In this post, we will show you 3 ways to prevent you from accidentally switching to Overtype mode in Word.
Now and then, while typing in a Word document, you suddenly find newly entered texts are replacing the original ones. This happens most when you hit the “Insert” key by accident, which controls the “Overtype” mode by default.
Generally, there are 3 ways for you to toggle between “Insert” and “Overtype” mode.
- First, press “Insert” key again to switch back to “Insert” mode.
- The second way is to turn on “Overtype” on the status bar. Right click on status bar and check “Overtype” to bring it out. Now you can click on the command to change mode.
- The third way is to close and reopen Word. Then Word will switch to “Insert” mode itself.
It’s easy to change “Overtype” mode back to “Insert”. But the fact is we notice the change only too late since texts are already gone. We then have to go through the fuss of undoing. Therefore, here are 3 ways for you to better control the function of “Insert” key.
Method 1: Alter Word Options
- To start off, click “File” tab then choose “Options” to open the “Word Options” dialog box.
- Next click “Advanced” on the left column.
- Then uncheck the “Use Insert key to control overtype mode” box.
- Lastly, click “OK” to save the modification.
Method 2: Use VBA Codes to Disable “Insert” Key to Control Overtype Mode
- To begin with, press “Alt+ F11” to open VBA editor.
- Secondly, click “Normal” to perform in the project.
- Click “Insert” and choose “Module”.
- Next double click on it to have the editing area open on the right side.
- Enter the bellowing codes there:
Sub DisableOrEnableInsertKey() Options.INSKeyForOvertype = Not Options.INSKeyForOvertype End Sub
- Finally, click “Run” button.
You can consider assigning a button to the macro and adding it to the “Quick Access Toolbar” for later use. You can refer to this article: How to Remove the Formatting of Pasted Texts with Macro and VBA in Your Word
Run the macro once, the “Insert” will be disabled. And run it again, you will be able to press it to bring out the “Overtype” mode.
Here is the video demonstration:
Method 3: Confirmation when Pressing “Insert” Key
Now there is another situation where you may want to keep the “Insert” key’s control of “Overtype” mode but need to be noticed whenever the “Insert” key is pressed. Then install and run macro following the steps in foresaid method 2 but replace macro with this one:
Sub InsertKeyBinding() With Application .CustomizationContext = ThisDocument .KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyInsert), _ KeyCategory:=wdKeyCategoryCommand, _ Command:="OvertypeTurnedOn" End With End Sub Sub OvertypeTurnedOn() Dim strButtonValue As String Options.Overtype = True strButtonValue = MsgBox("Are you sure to switch to overtype mode?", vbYesNo) If strButtonValue = vbYes Then Options.Overtype = True Else Options.Overtype = False End If End Sub
Put your cursor inside the “InsertKeyBinding” macro and click “Run” once. Then whenever you press “Insert” key in the future, there will be a dialog box popping up, asking whether you want to switch to “Overtype” mode. You can choose as required.
Ready for Document Errors
Never be too confident of your document security. There are millions of ways to have a document ruined. For example, you may just try to open a document only to find it inaccessible. Then without a backup, your only choice remain is to get a doc repair tool.
Author Introduction:
Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including fix xlsx and pdf repair software products. For more information visit www.datanumen.com
Leave a Reply