
6
views
views
Almost anyone who has used a word processor has accidentally hit the Insert key and overwritten when they thought they were editing. This article describes a simple way to disable the Insert key on your keyboard.
Whenever you press a key, a windows message is created, which contains a key code that uniquely identifies the key pressed. Programmes (like Microsoft Word) look for keypress messages and take actions based on the key code in the message. By mapping the insert key press event to null, windows send a message containing null for the key code when the Insert key is pressed. Programmes receiving the message, therefore, do not perform the action associated with an insert key press event, freeing you from having to worry about overwriting things again.
Make sure you read the warnings section before you continue.
Whenever you press a key, a windows message is created, which contains a key code that uniquely identifies the key pressed. Programmes (like Microsoft Word) look for keypress messages and take actions based on the key code in the message. By mapping the insert key press event to null, windows send a message containing null for the key code when the Insert key is pressed. Programmes receiving the message, therefore, do not perform the action associated with an insert key press event, freeing you from having to worry about overwriting things again.
Make sure you read the warnings section before you continue.
Go to Start → Run → regedit
Go to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Keyboard Layout
Right-click on the right half of the screen and choose New → Binary Value
Name the new Value Scancode Map
Enter 00 00 00 00 00 00 00 00 02 00 00 00 00 00 52 E0 00 00 00 00
Close regedit
Reboot.
Optional: you can take the Insert key off of your keyboard when done.
Comments
0 comment