Prompting the user to ensure they have printed

sush

Registered User.
Local time
Today, 11:03
Joined
Feb 8, 2000
Messages
29
Hi,

I want the user to be probpted to ensure they have printed the report.

i.e - are you sure you have printed?

Yes / No box

If yes then close the Report
Else

Do not.

I have tried to enter a Msgbox expression on the reports close Event, but i cannot get it to work

Any ideas

Thanks
 
Try this in the OnPrint property of the report:

If(MsgBox "Are you sure you have printed?", vbYesNo) = vbYes Then DoCmd.Close
 

Users who are viewing this thread

Back
Top Bottom