non printing text parts

M

Mel

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.
 
G

Graham Mayor

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top