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

This program extends upon the lessons in VBA Tutor Part One.

Designed for those that have used Part One 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. It is BEST to enable macros when asked, but not NECESSARY.

Sub AutoOpen()
ActiveDocument.ShowSpellingErrors = False
ActiveDocument.ShowGrammaticalErrors = False
With ActiveWindow
    .View.Zoom = 100
    .View.Type = wdPageView
    .DisplayVerticalRuler = False
    .DisplayRulers = False
End With
End Sub