PrintOut Method

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I have an application built to use the PrintOut method to
print multiple labels depending on the qty input by the
operator on a previous form.
It works perfectly on Windows 2K OS but fails on a Windows
98 OS.

Here is the snippet from the program:
(PCNT is the qty of labels needed.)

DoCmd.OpenReport "Fast Labels", acViewPreview
DoCmd.PrintOut acPrintAll, , , , PCNT, 0

Does each OS interpret the PrintOut method differently?
 
Steve:

Try setting the collate flag to true on the call to Print out. Often that
flag is required to get acceptable output.
 
Back
Top