View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jean-Guy Marcil[_2_] Jean-Guy Marcil[_2_] is offline
external usenet poster
 
Posts: 373
Default Forcing spell check before printing documents

"Ansie" wrote:

Dear All

Is there a way to set Word default to force it to spell check documents
prior to printing and/or e-mailing these documents?


You would need a macro for that. Place this in Normal.dot or in a global
template.


Sub FilePrint()

ActiveDocument.CheckSpelling
Application.Dialogs(wdDialogFilePrint).Show

End Sub

Sub FilePrintDefault()

With ActiveDocument
.CheckSpelling
.PrintOut
End With

End Sub

See
"What do I do with macros sent to me by other newsgroup readers to help
me out?" at
http://word.mvps.org/faqs/macrosvba/CreateAMacro.htm