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

--- Comment #10 from Ariel Constenla-Haile <[email protected]> ---
@kpassey: please try the workaround specified in comment 8, add a "PrinterName"
in printOpts


PropertyValue[] printOpts = new PropertyValue[3];
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);
...
oObjProps.setPropertyValue("PrintOptions", printOpts);

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

Reply via email to