R
Ross
How can I use VBA to test a File Location to determine
that it is valid, ie that it exists?
Thanks,
Ross
that it is valid, ie that it exists?
Thanks,
Ross
Ross said:How can I use VBA to test a File Location to determine
that it is valid, ie that it exists?
-----Original Message-----
Use the Dir function:
If Dir(fullpath) = "" Then
'no such file
Else
'file found
End If
-----Original Message-----
Check out the Dir() function.
--
Cheryl Fischer
Law/Sys Associates
Houston, TX
.