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

This program is an introduction to Visual Basic for Application.
Designed for those that have not done any 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