Printing to a file

  • Thread starter Thread starter JBFWAYNE
  • Start date Start date
J

JBFWAYNE

What is the programming code to be able to print to a file instead o
the screen or printer
 
Example below but look in help on the OutputTo command for your specific
formats.
DoCmd.OutputTo acOutputReport, "Test Report", acFormatTXT, "C:\temp\Test.txt"
 
Back
Top