mbentley Registered User. Local time Yesterday, 23:13 Joined Feb 1, 2002 Messages 138 Apr 15, 2004 #1 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?
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?
mbentley Registered User. Local time Yesterday, 23:13 Joined Feb 1, 2002 Messages 138 Nov 19, 2004 #2 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]"
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]"