View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_5_] Dave Peterson[_5_] is offline
external usenet poster
 
Posts: 1,758
Default ThisWorkbook.FullName

Here's a link to a couple of posts from Jim Rech and Tom Ogilvy about how to
convert the drive letter to the UNC path:

http://groups.google.com/groups?thre...%40cppssbbsa06



Steph wrote:

Hi everyone. The below piece of code checks to see if the current open file
name is the same as a file name in a server folder.

If LCase(file) < LCase(ThisWorkbook.FullName) Then

If LCase(file) returns a server path like \\servera\folder\folder\folder

LCase(ThisWorkbook.FullName) returns a path like G:\folder\folder\folder

They are the same thing, but according to vb are different. How can I get
LCase(ThisWorkbook.FullName) to return \\servera\folder\folder\folder??


--

Dave Peterson