vote up 1 vote down star

As the title so eloquently put it, I need to know how (or if it's even possible) to bind a macro to a key in Microsoft Word 2007 without recording a new macro each time.

I find myself writing new macros directly in code and then not being able to bind them to a key. Or I might just want to rebind a macro to another key.

flag

3 Answers

vote up 2 vote down check

Look at the KeysBoundTo collection - see here, the BuildKeyCode method - see here and the list of wdKey constants here

link|flag
vote up 2 vote down

As suggested, look up Word's KeyBindings object in the help file.

Additionally, if your macro must work with international keyboards, this is a very good read:

link|flag
vote up 1 vote down

The best solution I've come up with has been to record a new empty macro to the key I want (say, Ctrl+Num . [the Del key on the numpad]) and name the macro ctrl_num_dot. Then I can call any macro from the ctrl_num_dot subroutine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.