You could use a macro to provide the information eg Use the code as an
autonew macro if you are creating new documents from your template, and/or
autoopen if users are opening the document subsequently. Change sMsg= to the
information you wish to impart.

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Sub PopUpAdvice()
Dim sMsg As String
Dim sVer As Integer
sMsg = "Refer to status line at bottom of screen for field entry details" _
& vbCr & "Use the toolbar buttons to edit the document"
sVer = Application.version
If sVer < 12 Then
Assistant.On = True
Set Balloon = Assistant.NewBalloon
With Balloon
.Text = sMsg
.Button = msoButtonSetOK
.Animation = msoAnimationBeginSpeaking
.Show
End With
Else
MsgBox sMsg, vbInformation, "User Information"
End If
End Sub
> With a protected document if some one tries to edit it, the Protect
> Document Pane comes up. Is there a way to have an information box
> come up telling then to use the toolbar buttons to edit this document
> instead of the Protect Document Pane coming up?
>
> LEU