U
Ulf Nilsson
Hi,
I know how to hide all shapes in a document before
printing:
With ActiveDocument
iNum = 1
Do Until iNum = .Shapes.Count + 1
.Shapes(iNum).Visible = msoFalse
iNum = iNum + 1
Loop
iNum = 1
End With
But if I try to use the same method to hide all fields in
the document, there is no such thing as:
.Fields(iNum). Visible = msoFalse
The field I want to hide is:
{ MACROBUTTON NoMacro [Click here to type your text] }
and I don't think is nice to show that field on the print
out.
Any clue would be very appreciated.
/ Ulf
I know how to hide all shapes in a document before
printing:
With ActiveDocument
iNum = 1
Do Until iNum = .Shapes.Count + 1
.Shapes(iNum).Visible = msoFalse
iNum = iNum + 1
Loop
iNum = 1
End With
But if I try to use the same method to hide all fields in
the document, there is no such thing as:
.Fields(iNum). Visible = msoFalse
The field I want to hide is:
{ MACROBUTTON NoMacro [Click here to type your text] }
and I don't think is nice to show that field on the print
out.
Any clue would be very appreciated.
/ Ulf