[dev] Re: HELP REQUIRED

2011-06-07 Thread Shameera Rathnayaka
hi shashanka sharma

first try with the examples in the developer guide to perform some basic
things something like add a string to the writer doc if you are willing to
 work with writer. With that try to familiar with the java api.

On Tue, Jun 7, 2011 at 1:07 PM, Shashank Sharma shashan...@iitrpr.ac.inwrote:

 hello,
 I am a undergraduate student of third year (INDIAN INSTITTE OF
 TECHNOLOGY-IIT) and wants to develop new functionality in open office.before
 trying on the features of to do list , i want to add small
 functionality.However i am not clear how to start and how to proceed
 further.Also i started reading developers guide and it was not much clear to
 me
 Can u please provide me with some guidance and help on how to *start from
 scratch

 *Regards

 Shashank Sharma




-- 
Shameera Rathnayaka
Undergraduate
Department of Computer Science and Engineering
University of Moratuwa.
Sri Lanka.
T.P.  0719221454
-- 
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: HELP REQUIRED

2011-06-07 Thread lakmal padmakumara
Hi there ,

Developers guide was the best resource I had when I was in the same
situation like you !
Anyway I have written a small blog post about how to get started on plugin
developement based on my experience.
link:http://srilankatechnology.blogspot.com/2010_11_01_archive.html

This contains a basic approach so I again recommend you to take a good look
at the developer's guide as it contains almost all the information you need

On Tue, Jun 7, 2011 at 9:37 AM, Shashank Sharma shashan...@iitrpr.ac.inwrote:

 hello,
 I am a undergraduate student of third year (INDIAN INSTITTE OF
 TECHNOLOGY-IIT) and wants to develop new functionality in open office.before
 trying on the features of to do list , i want to add small
 functionality.However i am not clear how to start and how to proceed
 further.Also i started reading developers guide and it was not much clear to
 me
 Can u please provide me with some guidance and help on how to *start from
 scratch

 *Regards

 Shashank Sharma




-- 
Lakmal Padmakumara
Undergraduate
Computer Science and Engineering Department
University of Moratuwa
Sri Lanka
http://srilankatechnology.blogspot.com/
-- 
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: HELP REQUIRED

2011-06-07 Thread tora - Takamichi Akiyama

 On Tue, Jun 7, 2011 at 9:37 AM, Shashank Sharma shashan...@iitrpr.ac.in 
mailto:shashan...@iitrpr.ac.in wrote:

 hello,
 I am a undergraduate student of third year (INDIAN INSTITTE OF 
TECHNOLOGY-IIT) and wants to develop new functionality in open office.before 
trying on the features of to do list , i want to add small functionality.However i 
am not clear how to start and how to proceed further.Also i started reading 
developers guide and it was not much clear to me
 Can u please provide me with some guidance and help on how to *start from 
scratch

Extension is deep and big enough like the ocean...

1. Tool - Macros - Organize Macros - OpenOffice.org Basic
2. [Organizer...]
3. Libraries tab
4. [New...]
5. Name it e.g. Libaray1, [OK]
6. [Edit]
7. Paste a sample code. e.g.

Sub Main
sURL = private:factory/scalc
oDoc = StarDesktop.loadComponentFromURL( sURL, _blank, 0, Array())
oCell = oDoc.getSheets().getByIndex(0).getCellByPosition(0,0)
oCell.setValue(123)
print oCell.dbg_methods
print oCell.dbg_properties
End Sub

8. Run BASIC on the tool bar
9. Save BASIC on the tool bar
10. Select Module on the tool bar
11. Libraries tab
12. Choose the one named on the step 5.
13. [Export...]
14. Export as extension [OK]
15. Name it, [Save]

Now you have the first your own extension whose file name extension is .oxt
It is actually a ZIP archive file.

16. Rename xxx.oxt to xxx.oxt.zip
17. Extract the zip file and look into several internal files.

In addition to the developer's guide:
http://www.oooforum.org/
http://user.services.openoffice.org/en/forum/
http://api.openoffice.org/docs/common/ref/com/sun/star/frame/XComponentLoader.html#loadComponentFromURL

You have an opportunity to find how to add a menu item and an icon
button on the tool bar. How to control your OpenOffice.org. ...

The forum would help you a lot rather than this mailing list.
This ML is intended for development of OpenOffice.org itself, i think :-)

Have fun!
Tora
--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help


[dev] Re: Help Required In Writing a New SDBC Driver For LDAP

2011-03-09 Thread Chirag Mahapatra

--
-
To unsubscribe send email to dev-unsubscr...@openoffice.org
For additional commands send email to sy...@openoffice.org
with Subject: help