T
TomP
Here is the instruction I have for the one button on the document. This
button will open a Form and then take you to a module to gather data and
place it in the named bookmarks in Word.
Private Sub CommandButton1_Click()
DemogInfoForm_Initialize
End Sub
Anyway,
The problem I'm having is how (or where should I place the code) to hide the
button when it is printed? I have the code instructions below taken from
your previous questions.....
With ActiveDocument
.Shapes(1).Visible = msoFalse
.PrintOut Background:=False
.Shapes(1).Visible = msoTrue
End With
Thank you for your help!
Tom
button will open a Form and then take you to a module to gather data and
place it in the named bookmarks in Word.
Private Sub CommandButton1_Click()
DemogInfoForm_Initialize
End Sub
Anyway,
The problem I'm having is how (or where should I place the code) to hide the
button when it is printed? I have the code instructions below taken from
your previous questions.....
With ActiveDocument
.Shapes(1).Visible = msoFalse
.PrintOut Background:=False
.Shapes(1).Visible = msoTrue
End With
Thank you for your help!
Tom