E
Ed
I'm telling my code to find a folder using
FolderName = Dir$("C:\Documents and Settings\emillis\TIR *", vbDirectory)
If FolderName = "" Then
MsgBox "Not found"
Exit Sub
End If
Can I add something in case DIR found more than one match that will let me
choose which directory?
Ed
FolderName = Dir$("C:\Documents and Settings\emillis\TIR *", vbDirectory)
If FolderName = "" Then
MsgBox "Not found"
Exit Sub
End If
Can I add something in case DIR found more than one match that will let me
choose which directory?
Ed