To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90889
                 Issue #|90889
                 Summary|VBA not running
               Component|Spreadsheet
                 Version|OOo 3.0 Beta
                Platform|All
                     URL|
              OS/Version|All
                  Status|UNCONFIRMED
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|code
             Assigned to|spreadsheet
             Reported by|mikenagel





------- Additional comments from [EMAIL PROTECTED] Thu Jun 19 14:31:20 +0000 
2008 -------
I recently installed OO3 on both Windows and Mac, along with the latest
NeoOffice for Mac. I created a simple macro using Excel 2003 that types values,
copies and pastes them to new cells and then deletes them. I tested this macro
under OO3 on both Windows and Mac platforms and it would not run on either
(bombing on the first reference to the Range object). I then tested the same
file under NeoOffice and the macro ran without any problems.

Rem Attribute VBA_ModuleType=VBAModule
Option VBASupport 1
Sub Test()
'
' Test Macro
' Macro recorded 6/19/2008 by Mike Nagel
'

'
    Range("G15").Select
    ActiveCell.FormulaR1C1 = "Text 1"
    Range("G16").Select
    ActiveCell.FormulaR1C1 = "Text 2"
    Range("G17").Select
    ActiveCell.FormulaR1C1 = "Text 3"
    Range("G15").Select
    Selection.Copy
    Range("A1").Select
    ActiveSheet.Paste
    Range("G16").Select
    Application.CutCopyMode = False
    Selection.Copy
    Range("A3").Select
    ActiveSheet.Paste
    Range("G17").Select
    Application.CutCopyMode = False
    Selection.Copy
    Range("A5").Select
    ActiveSheet.Paste
    Range("G15").Select
    Application.CutCopyMode = False
    Selection.ClearContents
    Range("G16").Select
    Selection.ClearContents
    Range("G17").Select
    Selection.ClearContents
    Range("A1").Select
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]

Reply via email to