View Single Post
 
Old 05-29-2019, 03:00 PM
DaveP DaveP is offline Windows 10 Office 2010
Novice
 
Join Date: May 2019
Posts: 11
DaveP is on a distinguished road
Default

Also, I just discovered that a piece of code I wrote, that opens the active document's containing folder, doesn't work if the file is saved to the network, as opposed to saved to your PC. Here's the code to open the file path of this active document:


Sub FolderTest()
Shell Environ("windir") & "\Explorer.exe " & ActiveDocument.path, vbNormalFocus
End Sub
Reply With Quote