printing an invoice

  • Thread starter Thread starter Jean-Paul De Winter
  • Start date Start date
J

Jean-Paul De Winter

Hi,
In my profession I have to print my invoices on official documents.
A lot of data need to be printed and all on different and EXACT places.
The form is a bit larger then an A4 format.
What is the best procedure?? I need to print these invoices on different
matrix printers.
What is the correct procedure??
How to get data there where I want them to appear?
Thanks
JP
 
You should be able to move and size controls on your report to meet your
needs. Another option that would require a lot of coding is using the
Me.Print method. You set the X and Y position with code like:
Me.CurrentX = 1440 '1 inch from left margin
Me.CurrentY = 2880 '2 inches down from someplace
Me.Print "Company:" & Me.CompanyName
 
Back
Top