Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OverType Option in Word

Status
Not open for further replies.
Jul 18, 2002
97
US
When checking the TOOLS-OPTION-EDIT OverType box my check does not stay. I usually open Word, change option, close Word and the option stays selected ... not in this case. Any ideas?? Thanks.
 
Does your keyboard have Num Lock illuminated at startup? If not the zero becomes the Insert key. Pressing this will toggle between Overtype and Insert.

Just a thought

Bandit600
 
Thanks Bandit600 - you can toggle the OverType function with the INSERT key, but I've got a user that wants to have Word start-up with OverType on ... I thought the best way is to save the Normal.dot with the OverType box checked - but that's not working - even at home. Still looking for any ideas.
 
Open the user's Word.
Hit Alt+F11.
In the upper-left you'll see Normal, under that is Microsoft Word Object, then ThisDocument.

Double-click This Document and paste this code into the code window at right:

Private Sub Document_New()
With Options
.Overtype = True
End With

End Sub


Private Sub Document_Open()
With Options
.Overtype = True
End With

End Sub

Hit the diskette icon to save these changes to her normal.dot.
Close Word. Reopen. Test on new and existing documents.

Hope this helps! Anne Troy
Word and Excel Macros
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top