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





------- Additional comments from [EMAIL PROTECTED] Thu May 17 16:22:31 +0000 
2007 -------
For Testing, the two macros below should behave as described.

to enable vba compatibility mode the following option must be the first thing at
the top of the module
option vbasupport 1

Sub Main
Dim r1 as Range
set r1 = ActiveSheet
End Sub

the macro above tries to assign an object Dim'ed as as Range object to a
Worksheet object, it should Fail.

the next macro

Sub Main
Dim r1 as Range
set r1 = Range
Msgbox r1.Address
End Sub

should run nicely and print out the address of the range.

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