Disable shortcut key

K

Kanga 85

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.
 
P

Pegasus \(MVP\)

Kanga 85 said:
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/...69-57ff-4ae7-96ee-b18c4790cffd&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.
 
E

Elmo

Kanga said:
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...id=global&catalog=LCID=1033&1033comm=1&res=20
http://support.microsoft.com/search...id=global&catalog=LCID=1033&1033comm=1&res=20
 
J

JF

*Bonjour Kanga 85 * !
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
 
K

Kanga 85

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
 
K

Kanga 85

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
 
J

JF

*Bonjour Kanga 85 * !
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
 
P

Pegasus \(MVP\)

Kanga 85 said:
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

:

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/input/w2kscan-map.mspx
or here:
http://www.microsoft.com/globaldev/tools/msklc.mspx
 
K

Kanga 85

JF said:
*Bonjour Kanga 85 * !


Then try this :

^a::

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

Better :

^a::
send A
Return

So CTL+a does A
Thanks JF
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top