PC Review


Reply
Thread Tools Rate Thread

How to add text not to be printed.

 
 
Josh W
Guest
Posts: n/a
 
      12th Jun 2008
I want to distribute a form to all our employees. I want to include in the
body of the document instructions how to fill out different parts of the
document etc. How can I add these instructions to only be seen visibly on the
screen but not printed with the document. XP Word 2003.
 
Reply With Quote
 
 
 
 
Graham Mayor
Guest
Posts: n/a
 
      12th Jun 2008
If it is a protected form use the help text option in the field properties
to put the help text in the status bar and/or available by pressing F1
or
Use an on entry macro to pop up a message box on entry to each field as
appropriate eg

Sub PopUpAdvice()
Dim sMsg As String
Dim sVer As Integer
sMsg = "Refer to status line at bottom of screen for field entry details"
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
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

Josh W wrote:
> I want to distribute a form to all our employees. I want to include
> in the body of the document instructions how to fill out different
> parts of the document etc. How can I add these instructions to only
> be seen visibly on the screen but not printed with the document. XP
> Word 2003.



 
Reply With Quote
 
Josh W
Guest
Posts: n/a
 
      12th Jun 2008
Thanks Graham, for me the best solution is your second option since I need
the employees to be automatically exposed to those instructions without
having to check the status bar which they might easily miss.
I am very bad with macros, can you refer me to any useful site that provides
clear instructions. Thanks.
 
Reply With Quote
 
Graham Mayor
Guest
Posts: n/a
 
      12th Jun 2008
Would you believe http://www.gmayor.com/installing_macro.htm as posted at
the bottom of the code?

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

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>


Josh W wrote:
> Thanks Graham, for me the best solution is your second option since I
> need the employees to be automatically exposed to those instructions
> without having to check the status bar which they might easily miss.
> I am very bad with macros, can you refer me to any useful site that
> provides clear instructions. Thanks.



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
text is getting cut off when printed due to row ht. bkikoen Microsoft Excel Misc 1 18th Nov 2009 07:37 PM
printed emails are not WSIWG. Code is printed vs. the actual text Nik Windows XP Print / Fax 1 17th May 2009 02:23 AM
Why is screen text actually larger than printed text? =?Utf-8?B?bW9udGF1a2xpdGU=?= Microsoft Word Document Management 1 7th Nov 2006 06:05 PM
printed text =?Utf-8?B?Q2F0dA==?= Windows XP Print / Fax 1 9th Nov 2005 07:17 PM
text boxes,grouped & formated tight,losing text when printed Knopf Microsoft Windows 2000 0 1st Aug 2003 04:18 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:46 AM.