I'm new to OpenOffice and I'm trying to port an MS Office macro over to OpenOffice Basic. I need to be able to open a Calc spreadsheet from Writer so I can dump its contents into an array in my Writer macro. The OpenOffice documentation is tough going. Thanks!

link|improve this question

78% accept rate
feedback

1 Answer

Dim oSM

Dim oDesk

'Instantiate OOo

Set oSM = CreateObject("com.sun.star.ServiceManager")

'Create the services

Set oDesk = oSM.createInstance("com.sun.star.frame.Desktop")

Set oCalc = oSM.createInstance("com.sun.star.sheet.SpreadsheetDocument")

Dim strVar(4) As String

Dim iRow As Integer

Dim iColumn As Integer

Dim strEnd As String

Dim Cell as object

Dim CalcDoc

CalcDoc = oDesk.loadComponentFromURL("file:///c:/", "_blank", 0, Array())

Dim Sheet

Sheet = CalcDoc.Sheets.getByName("Sheet1")

iRow = 0

Do While strEnd <> "end"

For iColumn = 0 To 4

 Cell = Sheet.getCellByPosition(iColumn, iRow)

 strValue = Cell.String

    strVar(iColumn) = strValue

Next

'first cell contains "end" at end of spreadsheet

strEnd = Sheet.getCellByPosition(0, iRow).String

'Do something HERE with strValue row values, like use them in a search

iRow = iRow + 1

Loop

link|improve this answer
Hope this helps someone. I guess OpenOffice Basic isn't that popular. – Bob_Kruger Nov 12 '10 at 5:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.