Alt command for custom menu

  • Thread starter Thread starter jhahes
  • Start date Start date
J

jhahes

Here is part of the code for my current custom menu bar

Set cbRebuttals =
cbNavigationMenu.Controls.Add(Type:=msoControlButton)
cbRebuttals.Visible = True
cbRebuttals.Style = msoButtonCaption
cbRebuttals.Caption = "Rebuttals"
cbRebuttals.OnAction = "RebuttalsHome"


Is there anyway to put a shortcut...for example...when you want to
choose the file option you can hit ALT+F....and F is the trigger for
file.....is there anyway to set that up for my above
Example....Rebuttals where R is the trigger....

Thank you for any help
 
Change...
cbRebuttals.Caption = "Rebuttals"
-to-
cbRebuttals.Caption = "&Rebuttals"
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"jhahes"
wrote in message
Here is part of the code for my current custom menu bar

Set cbRebuttals =
cbNavigationMenu.Controls.Add(Type:=msoControlButton)
cbRebuttals.Visible = True
cbRebuttals.Style = msoButtonCaption
cbRebuttals.Caption = "Rebuttals"
cbRebuttals.OnAction = "RebuttalsHome"


Is there anyway to put a shortcut...for example...when you want to
choose the file option you can hit ALT+F....and F is the trigger for
file.....is there anyway to set that up for my above
Example....Rebuttals where R is the trigger....

Thank you for any help
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top