Assign ShortCut-key To Toggle VBA-toolbar?

  • Thread starter Thread starter SIGE
  • Start date Start date
S

SIGE

Hi There,

Is it possible to toggle a Toolbar via a shortcut combination?

Like:
Ctrl + Shift + 0 pops up the VBA-toolbar (or a custom ...)

Sige
 
Look at Application.Onkey

just assign a macro to the key combination that does what you want.
 
Hi Tom,

I thought there was a way to do it directly but ... I got out of the
woods with this:

Sub LaunchVBAToolbar()
Application.CommandBars("Visual Basic").Visible = True
End Sub

Sub ShortCutToVBAToolBar()
Application.OnKey "^+{v}", "LaunchVBAToolbar" 'ctrl + shift + v
End Sub

Sub ResetShortCutVBAToolbar()
' To revert to default keypress result
Application.OnKey "+^{v}", ""
End Sub

Thanks, Sige


"NOSPAM" to be removed for direct mailing...
 
' To revert to default keypress result
Application.OnKey "+^{v}", ""

This does not revert to the default keypress result. Instead, it
makes the keypress action do nothing at all. To revert to the
default, omit the second argument to OnKey.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

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