How do I add text to Word without it showing on hardcopy?

  • Thread starter Thread starter ringnecknuts
  • Start date Start date
R

ringnecknuts

My boss is trying to set up a document where an Instruction is visible to all
Users, but it isn't meant to show on 'hardcopy' and we don't want to use
'hidden text'.

Any suggestions??

Regards Sal of Brisbane, Qld
 
Another option would be to put the instruction text into a textbox in the
graphical layer, and to instruct Word not to include "drawings" created in
Word.
 
Another possibility is to use a pop-up message box on opening/creating the
document from macros in the document template (not normal.dot!) eg

Sub AutoNew()
Dim sMsg As String
Dim sVer As Integer
sMsg = "This is the user instruction"
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
End If
End Sub

Sub AutoOpen()
Dim sMsg As String
Dim sVer As Integer
sMsg = "This is the user instruction"
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
End If
End Sub

http://www.gmayor.com/installing_macro.htm
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

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

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

Back
Top