In which event do I place my code so that it will affect the printed copy of the report. I placed this code:
in "Report_Activate()". It works fine on print preview but it doesn't work when printing a hard copy. Where do I put this code to have the desired effect.
Tom
tomco22
tbrashier@vectormachinery.com
Code:
Select Case Forms!frmOrderEntry _
.fraConvey.Value
Case 1
Me.lblFax.Visible = True
Me.lblPhone.Visible = False
Case 2
Me.lblFax.Visible = False
Me.lblPhone.Visible = True
Case 3
Me.lblFax.Visible = False
Me.lblPhone.Visible = False
Case 4
Me.lblFax.Visible = False
Me.lblPhone.Visible = False
End Select
Tom
tomco22
tbrashier@vectormachinery.com