
Disable the "Insert" Button
I don't a have a macro solution for this, but my low-tech
solution was to physically pop the "insert" key off my
keyboard. Works great, I haven't had any problems with
this hideous "feature" since I did it. It does look
weird, but that's a small price to pay!
Quote:
>-----Original Message-----
>I have a macro in Excel (personal.xls) that runs on
>opening to disable the "insert" button as I never
>intentionally use it and only end up having to undo or
>retype text.
>Is there something similar that will work with Word
(2000)?
>Macro in Excel is:
>Sub Auto_Open()
>Application.Run "'Personal.xls'!TrapKey"
>End Sub
>Sub TrapKey()
>Application.OnKey "{F1}", "Continue"
>End Sub
>Sub Continue()
>MsgBox "Please use Toolbar for Help!"
>End Sub
>Thanks for any help.
>James
>.