-
Please help. I have a database populated form (all the data is in labels) and I'd like to print the form on letterhead. I have tried using: printer.print <label.caption> but the text prints out across the page in one long line. I've also tried: formName.currentx = 1440, formName.currenty = 2880, formName.printform - but I cannot get the image to move down on the printed page. Any help would be much appreciated.
Thank you.
-
I don't understand what you mean when you say "...but I cannot get the image to move down on the printed page".
[Edited by MartinLiss on 04-01-2000 at 11:46 AM]
-
Martin,
I meant that I cannot get the printout to move down. It prints right at the top of the page. I'd like to have a two inch margin at the top of the printout.
-
[Edited by d_yard on 04-01-2000 at 12:12 PM]
-
If you do the following...
Printer.ScaleMode = vbInches
Printer.CurrentY = 2
...the next line will be printed 2 inches from the top of the page. However MyForm.PrintForm always prints at the top of the page.