Hi KMK,
the macro recorder records:
Selection.TypeBackspace
Rename the macro to, eg:
Sub Backspace()
Selection.TypeBackspace
End Sub
then "tools, keyboard, categories, macros..."
ctrl together with Windows-key seems to be handy.
which results in "ctrl+".
HTH

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
Tony Jollans - 11 Mar 2006 12:49 GMT
Another way to do this is to directly bind a key to the backspace character
As far as I know this does need a macro to set it up --- but does not need a
macro to keep on functioning.
To set, say, F1 to backspace you could run ...
Sub BindBackspace()
CustomizationContext = NormalTemplate
KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyF1), _
KeyCategory:=wdKeyCategorySymbol, _
Command:=Chr(8) ' Backspace character
End Sub
providing you save your normal template you will not need the macro again.
--
R}
> Hi KMK,
>
[quoted text clipped - 22 lines]
> Win XP, Office 2003
> "red.sys" & Chr$(64) & "t-online.de"