find current path in VBA macro word
Index
‹
Microsoft ISV Community Center Forums
‹
Visual Basic for Applications (VBA)
Author
Message
issarto
Posted: Visual Basic for Applications (VBA), find current path in VBA macro word
Top
I have a macro in word.
In this macro I have need of a function that find the current path.
Microsoft ISV Community Center Forums2
blackmamba
Posted: Visual Basic for Applications (VBA), find current path in VBA macro word
Top
try CurDir
Subbusoft
Posted: Visual Basic for Applications (VBA), find current path in VBA macro word
Top
Try this
Application.path
which return the current working path.
check out
msgbox application.path
bvravi
Posted: Visual Basic for Applications (VBA), find current path in VBA macro word
Top
To get the activedocument path, use
------
Msgbox Activedocument.Path
------
-bvr
Index
‹
Microsoft ISV Community Center Forums
‹
Visual Basic for Applications (VBA)