Printing a receipt

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I need to print a receipt from a form. Could someone please tell me exactly
how to do this as i am only new to access

Your help will be very appreciated!
 
Use the report wizard to create your receipt. Let's say you call the report
RptReceipt. Put a button on your form and put this code in the button's
Click event:
DoCmd.OpenReport "RptReceipt"
 
Back
Top