A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

nonprintable text



 
 
Thread Tools Display Modes
  #1  
Old June 23rd, 2004, 02:59 AM
Michael
external usenet poster
 
Posts: n/a
Default nonprintable text

Could someone help me please?

I have some text in my document which I want to be visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am able
to remove the text for printing, it is no longer visible
electronically. I would prefer to have the text in the
footer rather than the main doc so if that is possible,
could you please let me know.

Thanks
Mick
  #2  
Old June 23rd, 2004, 03:18 AM
garfield-n-odie
external usenet poster
 
Posts: n/a
Default nonprintable text

If this is a one-page document, or if it is a multipage document but the same "editorial" text you want in the footer is the same for all pages, you can put the editorial text in a text box in the footer, then suppress printing of the text box in the footer by clicking on Tools | Options | Print | uncheck the "Drawing objects" box. Unfortunately this method won't be suitable if you have other drawing objects in the body of your document that you do want to print.

You can also format the editorial text as hidden. Make the hidden text visible on the screen by clicking on Tools | Options | View | check the box for "Hidden text". Suppress priinting of the hidden text by clicking on Tools | Options | Print | uncheck the "Hidden text" box. The disadvantage of this method is that most people don't work with hidden text turned on in View.


"Michael" wrote:

Could someone help me please?

I have some text in my document which I want to be visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am able
to remove the text for printing, it is no longer visible
electronically. I would prefer to have the text in the
footer rather than the main doc so if that is possible,
could you please let me know.

Thanks
Mick

  #3  
Old June 23rd, 2004, 03:39 AM
Jezebel
external usenet poster
 
Posts: n/a
Default nonprintable text

A sophistication of that technique: define a new style to use for this
special text. Write your own FilePrint macro that sets this style to hidden,
prints the document, then sets the style back to non-hidden.




"garfield-n-odie" wrote in message
...
If this is a one-page document, or if it is a multipage document but the

same "editorial" text you want in the footer is the same for all pages, you
can put the editorial text in a text box in the footer, then suppress
printing of the text box in the footer by clicking on Tools | Options |
Print | uncheck the "Drawing objects" box. Unfortunately this method won't
be suitable if you have other drawing objects in the body of your document
that you do want to print.

You can also format the editorial text as hidden. Make the hidden text

visible on the screen by clicking on Tools | Options | View | check the box
for "Hidden text". Suppress priinting of the hidden text by clicking on
Tools | Options | Print | uncheck the "Hidden text" box. The disadvantage
of this method is that most people don't work with hidden text turned on in
View.


"Michael" wrote:

Could someone help me please?

I have some text in my document which I want to be visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am able
to remove the text for printing, it is no longer visible
electronically. I would prefer to have the text in the
footer rather than the main doc so if that is possible,
could you please let me know.

Thanks
Mick



  #4  
Old June 23rd, 2004, 03:47 AM
Mick
external usenet poster
 
Posts: n/a
Default nonprintable text

Thanks Garfield, but unfortunately I do have other pics
which need to be printed.

Is there any way that I can make the doc automatically
overide the users unchecked view hidden option?

-----Original Message-----
Could someone help me please?

I have some text in my document which I want to be

visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am able
to remove the text for printing, it is no longer visible
electronically. I would prefer to have the text in the
footer rather than the main doc so if that is possible,
could you please let me know.

Thanks
Mick
.

  #5  
Old June 23rd, 2004, 04:09 AM
Jezebel
external usenet poster
 
Posts: n/a
Default nonprintable text

Only by using a macro (eg AutoOpen) that unchecks it.


"Mick" wrote in message
...
Thanks Garfield, but unfortunately I do have other pics
which need to be printed.

Is there any way that I can make the doc automatically
overide the users unchecked view hidden option?

-----Original Message-----
Could someone help me please?

I have some text in my document which I want to be

visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am able
to remove the text for printing, it is no longer visible
electronically. I would prefer to have the text in the
footer rather than the main doc so if that is possible,
could you please let me know.

Thanks
Mick
.



  #6  
Old June 23rd, 2004, 04:20 AM
Mick
external usenet poster
 
Posts: n/a
Default nonprintable text

You make it sound so easy. I'm using Word97 and am
hopeless with macros.

-----Original Message-----
Only by using a macro (eg AutoOpen) that unchecks it.


"Mick" wrote in

message
...
Thanks Garfield, but unfortunately I do have other pics
which need to be printed.

Is there any way that I can make the doc automatically
overide the users unchecked view hidden option?

-----Original Message-----
Could someone help me please?

I have some text in my document which I want to be

visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am

able
to remove the text for printing, it is no longer

visible
electronically. I would prefer to have the text in the
footer rather than the main doc so if that is possible,
could you please let me know.

Thanks
Mick
.



.

  #7  
Old June 23rd, 2004, 04:21 AM
garfield-n-odie
external usenet poster
 
Posts: n/a
Default nonprintable text

I'm not a macro expert, but I think this will work... You could add the following to an existing AutoOpen() macro in the document, or create a new AutoOpen() macro in the document containing:

With ActiveWindow
With .View
.ShowHiddenText = True
End With
End With
With Options
.PrintHiddenText = False
End With


"Mick" wrote:

Thanks Garfield, but unfortunately I do have other pics
which need to be printed.

Is there any way that I can make the doc automatically
overide the users unchecked view hidden option?

-----Original Message-----
Could someone help me please?

I have some text in my document which I want to be

visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am able
to remove the text for printing, it is no longer visible
electronically. I would prefer to have the text in the
footer rather than the main doc so if that is possible,
could you please let me know.

Thanks
Mick
.


  #8  
Old June 23rd, 2004, 04:31 AM
garfields #1 fan
external usenet poster
 
Posts: n/a
Default nonprintable text

It worked!!...thanks so much


-----Original Message-----
I'm not a macro expert, but I think this will work...

You could add the following to an existing AutoOpen()
macro in the document, or create a new AutoOpen() macro in
the document containing:

With ActiveWindow
With .View
.ShowHiddenText = True
End With
End With
With Options
.PrintHiddenText = False
End With


"Mick" wrote:

Thanks Garfield, but unfortunately I do have other pics
which need to be printed.

Is there any way that I can make the doc automatically
overide the users unchecked view hidden option?

-----Original Message-----
Could someone help me please?

I have some text in my document which I want to be

visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am

able
to remove the text for printing, it is no longer

visible
electronically. I would prefer to have the text in

the
footer rather than the main doc so if that is

possible,
could you please let me know.

Thanks
Mick
.


.

  #9  
Old June 23rd, 2004, 05:15 AM
Jean-Guy Marcil
external usenet poster
 
Posts: n/a
Default nonprintable text

Bonjour,

Dans son message, garfield-n-odie écrivait :
In this message, garfield-n-odie wrote:

|| I'm not a macro expert, but I think this will work... You could add the
following to an
|| existing AutoOpen() macro in the document, or create a new AutoOpen()
macro in the document
|| containing:
||
|| With ActiveWindow
|| With .View
|| .ShowHiddenText = True
|| End With
|| End With
|| With Options
|| .PrintHiddenText = False
|| End With
||

Just a little comment or two...
Whenever I change user settings, I first store the user's original settings,
change the settings to what I need, and then reset the settings to their
original values (usually when closing the document).

Also,
.ShowHiddenText = True
overrides the ShowAll button. Make sure you are addressing non-power users.
It would bother me to click on ¶ to hide hidden text, and still be able to
see it! ;-)

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
ISTOO
Word MVP site:
http://www.word.mvps.org



  #10  
Old June 23rd, 2004, 05:22 AM
garfield-n-odie
external usenet poster
 
Posts: n/a
Default nonprintable text

Cats rule -- dogs drool !!


"garfields #1 fan" wrote:

It worked!!...thanks so much


-----Original Message-----
I'm not a macro expert, but I think this will work...

You could add the following to an existing AutoOpen()
macro in the document, or create a new AutoOpen() macro in
the document containing:

With ActiveWindow
With .View
.ShowHiddenText = True
End With
End With
With Options
.PrintHiddenText = False
End With


"Mick" wrote:

Thanks Garfield, but unfortunately I do have other pics
which need to be printed.

Is there any way that I can make the doc automatically
overide the users unchecked view hidden option?

-----Original Message-----
Could someone help me please?

I have some text in my document which I want to be
visible
when viewed electronically, but would prefer that it
wasn't seen on the printed version of the document.

I've had a go with some FilePrint macros but if I am

able
to remove the text for printing, it is no longer

visible
electronically. I would prefer to have the text in

the
footer rather than the main doc so if that is

possible,
could you please let me know.

Thanks
Mick
.


.


 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:51 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.