How to find out if a directory is available or not?
Using VB 6.0
databasetext = network path available
If Len(Dir(databasetext)) = False Then
MsgBox "Database Path Not Available"
End if
I select a file from the network path, if the network path is unavailable, it shows the error "invalid file name or number"
How to solve this problem?
Need help with VB 6 code
source
share