Where is hyperlink pointing...File or Folder

B

BVHis

How can I tell if the hyperlink is pointing to a file or folder??!?

Thanks in advance!

~ Matt
 
T

Tom Ogilvy

Look in help at the Dir command and the GetAttr command. See the help
example for Dir:

If (GetAttr(MyPath & MyName) And vbDirectory) = vbDirectory Then
 
Top