Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sachinp78

  1. sachinp78

    FileExists method

    Option Explicit Dim fso As FileSystemObject Private Sub Command1_Click() Set fso = New FileSystemObject fso.OpenTextFile "c:\1.htm", ForReading If fso.FileExists("c:\1.htm") Then MsgBox "exists" Else MsgBox "Doesn't exists" End If...
  2. sachinp78

    FileExists method

    'Remember To add Reference to Microsoft Scripting Runtime 'in references 'Author:Sachin Option Explicit Dim fso As FileSystemObject Private Sub Command1_Click() Set fso = New FileSystemObject fso.OpenTextFile "c:\1.htm", ForReading If fso.FileExists("c:\1.htm") Then...
  3. sachinp78

    will webbrowser work if IE isn't installed

    No Doubt it will work but when you are building a package include shdocvw.dll with it then only it will work perfectly .

Part and Inventory Search

Back
Top