Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Programming / March 2006

Tip: Looking for answers? Try searching our database.

"Backspace" to a Function Key

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
KMK - 10 Mar 2006 19:23 GMT
How do I assign "backspace" to a function key? I can't find that function in
the "Commands" box to assign it to a function key...
Jean-Guy Marcil - 10 Mar 2006 20:02 GMT
KMK was telling us:
KMK nous racontait que :

> How do I assign "backspace" to a function key? I can't find that
> function in the "Commands" box to assign it to a function key...

Huh?
Backspace is already a key on the keyboard... why would you want to reassign
it to another key and end up duplicating it?

Unless you are writing about something else...

Signature

Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org 

KMK - 10 Mar 2006 21:40 GMT
Because of the positioning on my keyboard -Backspace is to my far right, the
same side that I have my mouse.  In the work I do, coding /editing, I have to
take my hand off the mouse, backspace with that same right hand then go back
to the mouse (I could use the left arrow to go back as well but again, it's
on the far right side of the keyboard) and this is a continuous process.  It
would be more efficient (and less painful long-term with the arthritis in my
hands) to assign backspace to a function key on the upper left of the
keyboard so I could use my left hand to hit backspace and maintain my right
hand positioning on the mouse.

I should have explained this earlier.  I can see that most would think my
question foolish  but this is "my first time" in a discussion group.

Thank you for your patience. I am open to any suggestions that may help.

> KMK was telling us:
> KMK nous racontait que :
[quoted text clipped - 7 lines]
>
> Unless you are writing about something else...
Helmut Weber - 10 Mar 2006 21:59 GMT
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"
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.