(RESOLVED) Dir list and File list
Is there a tool I can use in Access to find directories and files on a machine or in the connected network.
It should be something like you have in VB.
I must develop it in Access for the moment.
Later it will be transfered to VB6 , so I could reuse things i make in access.
Any help app.
Just in case you didn't know....
Same for a file:)
VB Code:
Private Sub Command77_Click()
If Dir("C:\My Documents\spreadsheet.xls") <> "" Then
MsgBox "Yep!"
Else
MsgBox "Nope!"
End If
End Sub
JO