I have created a file, by standard input.
I know need to print the file. What is the best way to do this, other than Word Automation. That is taking to long to do.
Printable View
I have created a file, by standard input.
I know need to print the file. What is the best way to do this, other than Word Automation. That is taking to long to do.
Try this example. My printer is out of ink so I could not try it myself. It should print in the Top-Left corner with a 1" by 1" border.
Code:'1440 Twips per Inch so this will create a 1"x1" border
Printer.CurrentX = 1440
Printer.CurrentY = 1440
Printer.Print "Testing VB Printing"
Printer.EndDoc