non printing text parts

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create some templates and I want to put some instuctions on
the template on how to use the document. I want these instructions to be
viewed on the screen but not print out.
 
How about a pop-up message box run from an autonew macro saved in the
template? e.g.

Sub Autonew()
Set Balloon = Assistant.NewBalloon
With Balloon
.Text = "Put your message here"
.Button = msoButtonSetOK
.Animation = msoAnimationBeginSpeaking
.Show
End With

or even simpler

Sub Autonew()
MsgBox "Put your message here"
End Sub

http://www.gmayor.com/installing_macro.htm


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top