Need Help With This One !!!

zacharyjunior

Registered User.
Local time
Today, 23:22
Joined
Jan 11, 2002
Messages
26
I have a report that is more or less an invoice to the customer. In the report footer I have text that provides a return goods number and shipping instructions. The problem is we do not want the material back sometimes. Is there a way that on my form I can select to add this text to the report and if it is not checked the text will not show up?

Thanks in advance.
 
Try this in the onOpen of the report:
Me.ReportFooter.Visible = MsgBox("Would you like to see the Report Footer?", vbYesNo, "show Report Footer") = vbYes

HTH
 

Users who are viewing this thread

Back
Top Bottom