| Check if File Exists |
|
|
|
| Tutorials | |||
|
[code] Public Function Fileexists(ByVal FName) As Boolean If Left(FName, 4) = " " ThenFileexists = False Else If Dir(FName) <> "" ThenFileexists = True ElseFileexists = False End If End If End Function[/code]
|


