Message 1 of 5
Open Office versus Microsoft Excel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a VBA macro who shows the contents of my part list:
Sub Export()
Dim oDrawDoc As DrawingDocument
Set oDrawDoc = ThisApplication.ActiveDocument
Dim oSheet As Sheet
Set oSheet = oDrawDoc.ActiveSheet
Dim oPartsList As PartsList
Set oPartsList = oSheet.PartsLists.Item(1)
Call oPartsList.Export("C:\Exported.xls", kMicrosoftExcel)
End Sub
But I don't have the Microsoft Excel, it's possible make this with the Open Office? Like that:
Call oPartsList.Export("C:\Exported.xls", kOpenOfficeCalc)
The line over returns an error.
Any comments will be apreciated.
Thanks.
Ladimir Abdala
Brazil
Sub Export()
Dim oDrawDoc As DrawingDocument
Set oDrawDoc = ThisApplication.ActiveDocument
Dim oSheet As Sheet
Set oSheet = oDrawDoc.ActiveSheet
Dim oPartsList As PartsList
Set oPartsList = oSheet.PartsLists.Item(1)
Call oPartsList.Export("C:\Exported.xls", kMicrosoftExcel)
End Sub
But I don't have the Microsoft Excel, it's possible make this with the Open Office? Like that:
Call oPartsList.Export("C:\Exported.xls", kOpenOfficeCalc)
The line over returns an error.
Any comments will be apreciated.
Thanks.
Ladimir Abdala
Brazil