| View previous topic :: View next topic |
| Author |
Message |
kishu_meda Newbie

Joined: 05 Jan 2008 Posts: 2 Location: india
|
Posted: Sat Jan 05, 2008 11:26 pm Post subject: using OpenOffice.org calc in vb.net |
|
|
Hi All,
I am writing a vb.net application to open a OpenOffice.org Calc spreadsheet and to read the range of cells and cell values. Could anyone suggest me the good site, which will give me the list of all functions/methods and description supported by the OpenOffice.org calc like;
oServiceManager = CreateObject("com.sun.star.ServiceManager")
oDesktop = oServiceManager.createInstance("com.sun.star.frame.Desktop")
openSheet = oCalcDoc.getSheets().getByName("abc")
openRngSource = openSheet.getCellRangeByName("A1:D6")
actually am searching for the methods like getCellRangeByIndex and reading cell values from RangeInstance etc..
Thanks in advance. _________________ Thanks & Regards,
Kishore |
|
| Back to top |
|
 |
B Marcelly Super User

Joined: 12 May 2004 Posts: 1414 Location: France
|
Posted: Sun Jan 06, 2008 12:11 am Post subject: |
|
|
Hi,
What you are looking for is the API of OpenOffice.org. This is independent of the programming language.
Official documentation is in the SDK http://api.openoffice.org/SDK/index.html
In this documentation you have to read the Developer's Guide and consult the IDL reference.
______
Bernard |
|
| Back to top |
|
 |
kishu_meda Newbie

Joined: 05 Jan 2008 Posts: 2 Location: india
|
Posted: Wed Jan 09, 2008 12:18 am Post subject: |
|
|
Hi Bernard,
Thanks for you reply and suggestion. I have looked into this link its really helped me a lot. _________________ Thanks & Regards,
Kishore |
|
| Back to top |
|
 |
|