list of used shortcut keys

  • Thread starter Thread starter Smallweed
  • Start date Start date
S

Smallweed

Does anyone know a way of listing the shortcut keys being used by macros in
the open workbook(s)? I have a long list of macros and don't particularly
want to go manually through the Options on every single one to find what
Ctrl-G is now doing...
 
Export the modules and scan the .bas files. For example:

Sub dural()
MsgBox (" ")
End Sub

If assigned CNTRL-e will produce a .bas file like:

Sub dural()
Attribute dural.VB_ProcData.VB_Invoke_Func = "e\n14"
MsgBox (" ")
End Sub
 
Back
Top