To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68059





------- Additional comments from [EMAIL PROTECTED] Mon Sep  4 18:25:18 -0700 
2006 -------
Andreas, ignore the comment about ParamArray -- I didn't have Option Compatible
enabled.  The following gives the same answer for both VBA and OOoBasic if it is
enabled:

Sub Main
  MsgBox a(1, 2, 3, 4, 5)
End Sub
Function a(ParamArray x())
  b = 0
  For i = LBound(x()) To UBound(x())
    b = b + x(i)
  Next i
  a = b
End Function

---------------------------------------------------------------------
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]

Reply via email to