how do I check to see if a file exists on the other end of a network?
The file is
\\Eduardo\c\WINNT\customerinfo.mdb
and this code doesnt work:
VB Code:
Function FileExists(s As String) As Boolean If Dir(s) <> "" Then FileExists = True Else FileExists = False End If End Function




Reply With Quote