To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=63866
User sw changed the following:
What |Old value |New value
================================================================================
Assigned to|sw |mba
--------------------------------------------------------------------------------
Ever confirmed| |1
--------------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
--------------------------------------------------------------------------------
Target milestone|--- |OOo 3.0
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Tue Apr 4 06:08:55 -0700
2006 -------
sw->mba: seems the "Collate" property indeed invalidates the value of the
property "CopyCount" ...
xDoc = ThisComponent
dim args(1) as new com.sun.star.beans.PropertyValue
args(0).Name = "CopyCount"
args(0).Value = 2
args(1).Name = "Collate"
args(1).Value = true
xDoc.print(args())
only prints one copy of the document, but
sub main
xDoc = ThisComponent
dim args(0) as new com.sun.star.beans.PropertyValue
args(0).Name = "CopyCount"
args(0).Value = 2
xDoc.print(args())
end sub
prints two copies as expected.
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]