Can I have graphics appear on screen but NOT print?

R

richlb

I want to be able to have a graphic appear in a word document on screen but
not print out. The reason is that I have a letterhead that i print onto in
the printer with my logo, and I also want it to appear on screen.
 
D

Doug Robbins - Word MVP

You may need to use a macro such as

Sub ToggleLogo()
With
ActiveDocument.Sections(1).Headers(wdHeaderFooterFirstPage).Range.Tables(1)
_
.Rows(1).Cells(1).Range.InlineShapes(1).PictureFormat
If .Brightness = 0.5 Then
.Brightness = 1
.Contrast = 0
Else
.Brightness = 0.5
.Contrast = 0.5
End If
End With
End Sub


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - 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