PC Review


Reply
Thread Tools Rate Thread

Disable shortcut key

 
 
Kanga 85
Guest
Posts: n/a
 
      27th Jul 2008
How do I disable shortcut keys in WinXP. In particular Ctrl A. My
mother-in-law, aged 85 with very stiff fingers, frequently, but accidentally,
types Ctrl A instead of Shift A. She then continues typing and complains
when she has lost everything. How can I turn this key off?
Thanks.
 
Reply With Quote
 
 
 
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      27th Jul 2008

"Kanga 85" <(E-Mail Removed)> wrote in message
news:BD50A8F4-F9A0-40AB-954B-(E-Mail Removed)...
> How do I disable shortcut keys in WinXP. In particular Ctrl A. My
> mother-in-law, aged 85 with very stiff fingers, frequently, but
> accidentally,
> types Ctrl A instead of Shift A. She then continues typing and complains
> when she has lost everything. How can I turn this key off?
> Thanks.


This is a well-known phenomenon. The easiest way is probably
to map the CapsLock key to the left Ctrl key. You can do it with
remapkey.exe - just drag the CapsLock key on top of the Ctrl key,
then log off and log on again. You can find it here:
http://www.microsoft.com/downloads/d...displaylang=en
Remember to keep a record of what you did in order to avoid
the confusion that would occur two years from now when
nobody has any recollection of this issue.


 
Reply With Quote
 
Elmo
Guest
Posts: n/a
 
      27th Jul 2008
Kanga 85 wrote:
> How do I disable shortcut keys in WinXP. In particular Ctrl A. My
> mother-in-law, aged 85 with very stiff fingers, frequently, but accidentally,
> types Ctrl A instead of Shift A. She then continues typing and complains
> when she has lost everything. How can I turn this key off?
> Thanks.


One thing you can do: Teach her to press Ctrl/Z to undo the last change.
Or click Edit, Undo, for the same result.

http://support.microsoft.com/search/...3comm=1&res=20
http://support.microsoft.com/search/...3comm=1&res=20

--
Joe =o)
 
Reply With Quote
 
JF
Guest
Posts: n/a
 
      27th Jul 2008
*Bonjour Kanga 85 * !
<news:BD50A8F4-F9A0-40AB-954B-(E-Mail Removed)>

> How do I disable shortcut keys in WinXP. In particular Ctrl A. My
> mother-in-law, aged 85 with very stiff fingers, frequently, but accidentally,
> types Ctrl A instead of Shift A. She then continues typing and complains
> when she has lost everything. How can I turn this key off?
> Thanks.


This is a job for AutoHotkey
http://www.autohotkey.com/

Here is the script ==>

LCtrl::Shift
Return



The Left Ctrl becomes a Shift Key.
I suggest to do the same with CapsLock :


CapsLock::LShift
Return

--
Salutations, Jean-François.


 
Reply With Quote
 
Kanga 85
Guest
Posts: n/a
 
      28th Jul 2008
Thanks Pegasus, Elmo, JF.

I will try to remap the key. I have told her about Ctrl Z, but she often
types on not realizing what's happen until she find she's lost the lot. And
you haven't had the experience of trying to tell my mother-in-law anything -
it's also me or the computer to blame.

Thanks again

"Pegasus (MVP)" wrote:

>
> "Kanga 85" <(E-Mail Removed)> wrote in message
> news:BD50A8F4-F9A0-40AB-954B-(E-Mail Removed)...
> > How do I disable shortcut keys in WinXP. In particular Ctrl A. My
> > mother-in-law, aged 85 with very stiff fingers, frequently, but
> > accidentally,
> > types Ctrl A instead of Shift A. She then continues typing and complains
> > when she has lost everything. How can I turn this key off?
> > Thanks.

>
> This is a well-known phenomenon. The easiest way is probably
> to map the CapsLock key to the left Ctrl key. You can do it with
> remapkey.exe - just drag the CapsLock key on top of the Ctrl key,
> then log off and log on again. You can find it here:
> http://www.microsoft.com/downloads/d...displaylang=en
> Remember to keep a record of what you did in order to avoid
> the confusion that would occur two years from now when
> nobody has any recollection of this issue.
>
>
>

 
Reply With Quote
 
Kanga 85
Guest
Posts: n/a
 
      28th Jul 2008
Thanks again for all your assistance. But is there any way I can just turn
off Ctrl A, or turn Ctrl A into Shift. I do not really want to lose all of
the Ctrl functions in the left hand Ctrl key, which I will do if I assign it
to Caps Lock, or Shift.

Thanks for any further help,
kanga

"Kanga 85" wrote:

> How do I disable shortcut keys in WinXP. In particular Ctrl A. My
> mother-in-law, aged 85 with very stiff fingers, frequently, but accidentally,
> types Ctrl A instead of Shift A. She then continues typing and complains
> when she has lost everything. How can I turn this key off?
> Thanks.

 
Reply With Quote
 
JF
Guest
Posts: n/a
 
      28th Jul 2008
*Bonjour Kanga 85 * !
<news:70BB6ADC-740B-44BB-9796-(E-Mail Removed)>

> Thanks again for all your assistance. But is there any way I can just
> turn off Ctrl A, or turn Ctrl A into Shift. I do not really want to lose
> all of the Ctrl functions in the left hand Ctrl key, which I will do if I
> assign it to Caps Lock, or Shift.


Then try this :

^a::

Explanation :
^ means Ctrl
so ^a:: means CTL+a ==> does nothing

Better :

^a::
send A
Return

So CTL+a does A

--
Salutations, Jean-François.


 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      28th Jul 2008

"Kanga 85" <(E-Mail Removed)> wrote in message
news:70BB6ADC-740B-44BB-9796-(E-Mail Removed)...
> Thanks again for all your assistance. But is there any way I can just
> turn
> off Ctrl A, or turn Ctrl A into Shift. I do not really want to lose all
> of
> the Ctrl functions in the left hand Ctrl key, which I will do if I assign
> it
> to Caps Lock, or Shift.
>
> Thanks for any further help,
> kanga
>
> "Kanga 85" wrote:
>


I tend to be pragmatic: If it works then I'll use it, even if it is not
the ideal solutioin. If you're prepared to spend a lot of time then
you can tweak the keyboard scan codes. Have a look here:
http://www.microsoft.com/whdc/device...kscan-map.mspx
or here:
http://www.microsoft.com/globaldev/tools/msklc.mspx


 
Reply With Quote
 
Kanga 85
Guest
Posts: n/a
 
      28th Jul 2008


"Pegasus (MVP)" wrote:

>
> "Kanga 85" <(E-Mail Removed)> wrote in message
> news:70BB6ADC-740B-44BB-9796-(E-Mail Removed)...
> > Thanks again for all your assistance. But is there any way I can just
> > turn
> > off Ctrl A, or turn Ctrl A into Shift. I do not really want to lose all
> > of
> > the Ctrl functions in the left hand Ctrl key, which I will do if I assign
> > it
> > to Caps Lock, or Shift.
> >
> > Thanks for any further help,
> > kanga
> >
> > "Kanga 85" wrote:
> >

>
> I tend to be pragmatic: If it works then I'll use it, even if it is not
> the ideal solutioin. If you're prepared to spend a lot of time then
> you can tweak the keyboard scan codes. Have a look here:
> http://www.microsoft.com/whdc/device...kscan-map.mspx
> or here:
> http://www.microsoft.com/globaldev/tools/msklc.mspx
>
>

Thanks Pegasus>
 
Reply With Quote
 
Kanga 85
Guest
Posts: n/a
 
      28th Jul 2008


"JF" wrote:

> *Bonjour Kanga 85 * !
> <news:70BB6ADC-740B-44BB-9796-(E-Mail Removed)>
>
> > Thanks again for all your assistance. But is there any way I can just
> > turn off Ctrl A, or turn Ctrl A into Shift. I do not really want to lose
> > all of the Ctrl functions in the left hand Ctrl key, which I will do if I
> > assign it to Caps Lock, or Shift.

>
> Then try this :
>
> ^a::
>
> Explanation :
> ^ means Ctrl
> so ^a:: means CTL+a ==> does nothing
>
> Better :
>
> ^a::
> send A
> Return
>
> So CTL+a does A
>
> --
> Salutations, Jean-François.
>
>
>

Thanks JF
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to disable Win key shortcut? Bob S Windows XP General 0 17th Nov 2007 05:21 PM
Can I DISABLE a shortcut key? =?Utf-8?B?Q01JQ29ubmll?= Microsoft Excel Misc 4 14th Apr 2006 07:14 PM
Disable shortcut keys =?Utf-8?B?Sg==?= Windows XP General 1 29th Mar 2006 05:59 PM
Disable Shortcut page under File Shortcut Properties Amit Goenka Windows XP Customization 0 17th Feb 2006 09:54 AM
Shortcut to disable Screensaver saturnin02 Windows XP Basics 9 30th Mar 2004 02:42 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:19 PM.