Group: microsoft.public.word.vba.general
From: "Klaus Linke"
Date: Tuesday, March 25, 2008 4:30 PM
Subject: Re: Using F1 and Shift F1 in Word Macros

Hi Tom,

If you want to assign shortcuts involving more than one key, you can use
BuildKeyCode:

Application.CustomizationContext = ActiveDocument
Application.KeyBindings.Add _
KeyCategory:=wdKeyCategoryMacro, _
Command:="Interviewer", _
KeyCode:=BuildKeyCode(wdKeyShift, wdKeyF1)

Regards,
Klaus