PrintOut Method

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?
 
S

SA

Steve:

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top