To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88333
------- Additional comments from [EMAIL PROTECTED] Wed Apr 30 21:08:35 +0000
2008 -------
Confirmed.
With the following macro I could reproduce the problem.
Instead of the expected 2 copies I got 4
OOo2.4 (Sun build) on Linux/Ubuntu 7.04
Sub Stampa()
Dim oDoc as Object
Dim oRange as Object
Dim oFoglio as Object
oDoc = ThisComponent
ofoglio = ThisComponent.CurrentController.ActiveSheet
oRange = oFoglio.getCellRangeByName("$A$1:$E$47").getRangeAddress()
oFoglio.setPrintAreas(Array(oRange))
Dim args1(2) as new com.sun.star.beans.PropertyValue
args1(0).Name = "CopyCount"
args1(0).Value = 2
args1(1).Name = "Selection"
args1(1).Value = true
args1(2).Name = "Collate"
args1(2).Value = false
oDoc.print(args1())
oFoglio.setPrintAreas(Array())
End Sub
---------------------------------------------------------------------
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]