Re: spellchecker failsafe?
- From: Jay Freedman <jay.freedman@xxxxxxxxxxx>
- Date: Tue, 05 Dec 2006 21:34:30 -0500
You can use macros with special names to intercept Word's built-in
commands (see
http://www.word.mvps.org/FAQs/MacrosVBA/InterceptSavePrint.htm). Use
the information at http://www.gmayor.com/installing_macro.htm to put
these macros into your Normal.dot template or a global template:
Sub FilePrint()
On Error Resume Next
ActiveDocument.CheckSpelling
Dialogs(wdDialogFilePrint).Show
End Sub
Sub FilePrintDefault()
On Error Resume Next
ActiveDocument.CheckSpelling
ActiveDocument.PrintOut Background:=False
End Sub
Sub FileSave()
On Error Resume Next
ActiveDocument.CheckSpelling
ActiveDocument.Save
End Sub
Sub FileSaveAs()
On Error Resume Next
ActiveDocument.CheckSpelling
Dialogs(wdDialogFileSaveAs).Show
End Sub
You can't get a macro to run when you attach a document to an email
(at least, not in Word; maybe in Outlook), but running a check before
saving any document should be good enough.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
On Tue, 5 Dec 2006 16:11:01 -0800, Pete o <Pete
o@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
I am using spellchecker in Word 2003. I would like to make it automatic so.
that no document is printed or used as an attachment without first using
spellchecker. (OK so I am a little forgetful). This option is available
under e-mail but I cannot find a similar command to apply spellchecker each
and every time upon finishing the document.
- Prev by Date: Re: Dictionary Missing In Action
- Next by Date: Re: If I paste pictures they appear blank in most view, how do I fix?
- Previous by thread: Re: why kids shouldn't go to school
- Next by thread: Re: If I paste pictures they appear blank in most view, how do I fix?
- Index(es):
Relevant Pages
|