Note: [1] 
VBA Tutor Part Three by (c) 1999 Gary Radley
garyradley@standard.net.au
http://www.standard.net.au/~garyradley/

This program extends upon the lessons in VBA Tutor Parts One and Two.

Designed for those that have used Part One and Two or have done some computer programming before. 

This program is freeware and can be freely distributed

Note: [2]
The following AutoOpen macro will try to load and setup the documents to display properly, without displaying spelling and gramatical errors. It is BEST to enable macros when asked, but not NECESSARY.

Sub AutoOpen()
ActiveDocument.ShowSpellingErrors = False
ActiveDocument.ShowGrammaticalErrors = False
End Sub