Good Morning Folks,
I have this bit of code that if the file path does not exist it ends the process, but what I would like it to do is to not end the process but continue to the next record. If someone wouldn't mind looking at the code below and give any suggestions or pointers that would be most appreciated.
Regards
John
I have this bit of code that if the file path does not exist it ends the process, but what I would like it to do is to not end the process but continue to the next record. If someone wouldn't mind looking at the code below and give any suggestions or pointers that would be most appreciated.
Code:
If Not FS.FolderExists(TifFilePath) Then
MsgBox "Folder Doesn't Exist", , "Reading Tif Files"
End
End If
Regards
John