How can I tell if the hyperlink is pointing to a file or folder??!? Thanks in advance! ~ Matt
B BVHis May 3, 2004 #1 How can I tell if the hyperlink is pointing to a file or folder??!? Thanks in advance! ~ Matt
T Tom Ogilvy May 3, 2004 #4 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
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