This is the error
Code:If FileExists(SettingIni) = False Then
Quote:
It's the FileExists
Error Msg:
Quote:
Sub or Function not defined
Printable View
This is the error
Code:If FileExists(SettingIni) = False Then
Quote:
It's the FileExists
Error Msg:
Quote:
Sub or Function not defined
You haven't defined something check your code again.
You haven't defined the FileExists function; it is not a default VB6 function.
Meth0d has explained it, if you're using FileSystemObject, it is:
Code:If FSO.FileExists(App.Path & "\lol.ini") = True Then
Try...
If App.Path & "DirHereAndFile" ="" Then
Msgbox "File exits"
Else
Msgbox "File doesn't exist"
End If
Off-topic:
Can someone give me some tips for creating a FlatFile Server?
Thanks for your support and help, that really helped me a lot, since you all helped me now I can convert to MySQL.
Thanks again.
~Thread Closed.