https://issues.apache.org/ooo/show_bug.cgi?id=125309

--- Comment #11 from kpassey <[email protected]> ---
Confirmed on windows 7 

Adding the printer name to printOpts works..

PropertyValue[] printOpts = new PropertyValue[4];
            printOpts[0] = new PropertyValue();
            printOpts[0].Name = "CopyCount";
            printOpts[0].Value = new Short((short) copies);
            printOpts[1] = new PropertyValue();
            printOpts[1].Name = "Collate";
            printOpts[1].Value = new Boolean((boolean) false);
            printOpts[2] = new PropertyValue();
            printOpts[2].Name = "Wait";
            printOpts[2].Value = new Boolean((boolean) true);
            printOpts[3] = new PropertyValue();
            printOpts[3].Name = "PrinterName";
            printOpts[3].Value = mPrinter;

Will test on XP next..

-- 
You are receiving this mail because:
You are the assignee for the issue.
You are watching all issue changes.

Reply via email to