Hyperlink in Menu

mbentley

Registered User.
Local time
Yesterday, 23:13
Joined
Feb 1, 2002
Messages
138
I want to be able to place a hyperlink in a custom menu and change the path at runtime using VBA. How do I do this?
 
Answering my own question...again

Finally figured this out for anyone who cares:

Code:
CommandBars("[Menu Bar Name]").Controls("[Menu Name]").Controls("Menu Item Name").TooltipText = CurrentProject.Path & "\[File Name]"
 

Users who are viewing this thread

Back
Top Bottom