[api-dev] Re: ReDim driving me crazy again…

2011-08-18 Thread Laurent Godard
HI from my poor experience if I want to use redim, i have to define the array as dynamic may be try this public NDice() as integer sub main redim NDice(1 to 6) end sub Laurent -- - To unsubscribe send email to

[api-dev] Re: using external libraries with Pyuno components

2011-03-17 Thread Laurent Godard
Hi paolo long time !!! i put my imported .py file inside the extension in a pythonpath directory the main .py files are at extension root i found this information long time ago and think it is a reserved directory name no declaration in manifest.xml HTH laurent --

[api-dev] deactivate a top level menu

2010-07-02 Thread Laurent Godard
Hi all i create a top level menu using addon.xcu with a node oor:name=OfficeMenuBar in some cases, i want that this menu not accessible so how can i deactivate it by code so it is greyed ? same question for a custom toolbar node oor:name=OfficeToolBar i know how to deactivate submenus

Re: [api-dev] OOo Summer Internship Program - Improve (Python) scriptability

2010-05-27 Thread Laurent Godard
Hi Welcome on board and thanks focusing on python :) I personally can also think about some IDE integration of Python to simplify the creation, debugging, deployment of Python scripts. +100 Python binding probably needs improvement but IMHO, a better integration inside OOo with its own

Re: [api-dev] Sending email to multiple recipients

2010-04-21 Thread Laurent Godard
Hi just a thought if OOo Api can attach a file, create a plain-text file and write your body in it then send this file as attachment may work Laurent - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For

Re: [api-dev] Script in one library can't find function in another

2010-01-04 Thread Laurent Godard
Hi may be have a look at BasicLibraries.loadLibrary here is a rough example Laurent function loadMyLib(optional pwd) if isMissing(pwd) then pwd = false endif if not BasicLibraries.isLibraryPasswordVerified(My_Lib) and pwd then chkpwd =

[api-dev] using css.awt.AsyncCallback in OOoBasic

2009-12-18 Thread Laurent Godard
Hi all my problem is that a mouse listener on a calc document is called and i need to close the calc document in this call it works but exiting the listerner callback _mousepressed, OOo crashes Mikhail pointed me on AsyncCallback using OOoBasic asyncCallback = createUnoService(

Re: [api-dev] using css.awt.AsyncCallback in OOoBasic

2009-12-18 Thread Laurent Godard
Hi again thanks a lot it works, at least i can define a callback :) i did dome tests and i encounter a strange behaviour my call chain is, i added a print statement at the end of each subroutine sub listener_moussereleased -- sub 1 -- sub 2 i define the callback in sub2 and put (for the

Re: [api-dev] using css.awt.AsyncCallback in OOoBasic

2009-12-18 Thread Laurent Godard
Hi peter If you comment out your Print in the main routine, than the Print in the callback function works as expected. Try to replace both print methods with Msgbox and it makes you wonder... The Msgbox in the callback function doesn't appear without any errors. thanks a lot i'll have a

Re: [api-dev] base api : Tables.createDataDescriptor do not show appendByDescriptor method

2009-12-08 Thread Laurent Godard
Hi Fernand As i told, plain example worked The problem is that even if i can define a good TableDescriptor, the tables.columns do not show any .appendByDescriptor method, even if the connection is not read only as i can do update and insert requests As i do some odd manipulations with

[api-dev] base api : Tables.createDataDescriptor do not show appendByDescriptor method

2009-12-07 Thread Laurent Godard
Hi all I'm facing a problem for 3 days i cannot solve using database and OOoBasic My goal is to dynamically create a table It used to work in some light tests based on Andrew's document (thanks to him) but now, going in my whole stuff, i encounter the following problem I create my

Re: [api-dev] How to copy all properties from a style

2009-10-21 Thread Laurent Godard
Hi bernard newStyle.ParentStyle = oldStyle.Name oStyles.insertByName(myNewStyle, newStyle) does it work with different spreadsheets ? i'm not sure, i'll test when time but really not sure actually, i loop on all properties. that is the quickest way i explored Laurent

Re: [api-dev] Detecting which button was pressed with a Basic Macro

2009-08-30 Thread Laurent Godard
Hi Johnny the event of a button in a dialog throws an event object to the called macro. This Event object has a Source property that contains the caller object design your button, plugg it to the MySub macro then sub mySub (oeVt) print oEvt.Source.name end sub HTH Laurent

Re: [api-dev] Detecting which button was pressed with a Basic Macro

2009-08-30 Thread Laurent Godard
Hi This helped indeed. It was wrong, but it helped… There is no oEvt.Source.Name, but now that I know this is possible I used Xray and found oEvt.Source.getModel().Name. yes you're right i wrote too fast happy that it helped Laurent

Re: [api-dev] Non modal dialog staying in front ?

2008-08-28 Thread Laurent Godard
-- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

[api-dev] Non modal dialog staying in front ?

2008-08-22 Thread Laurent Godard
document is active. any idea how to achieve that ? any link is welcommed feel free to ask for more details Thanks in advance Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http

Re: [api-dev] .uno:InsertDoc API equivalent ?

2007-11-08 Thread Laurent Godard
, [in] sequence com::sun::star::beans::PropertyValue aOptions) Pass a URL and an empty sequence of PropertyValue structs. However, load properties could be used as described in com.sun.star.document.MediaDescriptor. -- Laurent Godard [EMAIL PROTECTED] - Ingénierie

[api-dev] .uno:InsertDoc API equivalent ?

2007-11-08 Thread Laurent Godard
Hi all Using writer is there an alternative to .uno:InsertDoc dispatcher command using full api my goal is to import html file (ideally using inputstream) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management

Re: [api-dev] .uno:InsertDoc API equivalent ?

2007-11-08 Thread Laurent Godard
as for loadComponentFromURL ? Thanks again Oliver Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] .uno:InsertDoc API equivalent ?

2007-11-08 Thread Laurent Godard
Hi Olivier Please file an issue about that and assign it to me (os). done http://extensions.openoffice.org/issues/show_bug.cgi?id=83449 thanks Oliver Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http

Re: [api-dev] XPackageManagerManager.removePackage changes

2007-10-23 Thread Laurent Godard
or unopkg directly? the use case would be an intelligent extension that updates itself using XPackageManagerManager a consequent use, a monitoring extension that monitors new versions of all installed ones Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http

Re: [api-dev] XPaketManager.removePackage changes

2007-10-22 Thread Laurent Godard
satisfying but that is the situation today. Is it planned to make it public one day ? Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation

Re: [api-dev] Getting OOo Version via API

2007-10-22 Thread Laurent Godard
Hi is it possible to retrieve the OpenOffice version via API? sure, reading the config registry Setup in what language do yo need it ? I have it OOoBasic and Java Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content

Re: [api-dev] Getting OOo Version via API

2007-10-22 Thread Laurent Godard
); } return property; } -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] maven plugin to build OOo extensions

2007-09-28 Thread Laurent Godard
it. The idea, what it can, how it works, examples etc. Maybe you will start a wiki page documenting your on going work. And for the source we will find a place in the cvs of the api project. The extension project can also host it (but it is a already an api subdirectory iirc) Laurent -- Laurent

[api-dev] Extending BasicIDE

2007-09-23 Thread Laurent Godard
Hi all Is it possible to access com.sun.star.comp.basic.BasicIDE text area as a text object (or other type) My goal would be to play with text frames in it Any idea ? Thanks in advance Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo

[api-dev] Insert image in textframe visibility

2007-09-21 Thread Laurent Godard
to foreground). If i run without any pause, the image does not go to front Any way to tell an image i insert in a TextFrame to be visible by default ? (i would prefer get rid of the dispatcher call) Thanks Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com

Re: [api-dev] Insert image in textframe visibility

2007-09-21 Thread Laurent Godard
it ? But how can i set these layers in writer Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] Insert image in textframe visibility

2007-09-21 Thread Laurent Godard
you're welcome lgodard @other: sorry for the noise Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] AWT TREE: OOoBasic version of the ScriptSelector example

2007-09-20 Thread Laurent Godard
this Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] Moving CoceSnippets into the Wiki?

2007-08-28 Thread Laurent Godard
, but tools has to be correctly setup to allow the management Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] Moving CoceSnippets into the Wiki?

2007-08-27 Thread Laurent Godard
... sounds good to me may be make a call for volunteers ? A wiki is only one solution but quite cheap to realize ;-) I agree :) but still lack correct internationalisation features for really doc. mangement with the native-lang projects Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie

Re: [api-dev] Moving CoceSnippets into the Wiki?

2007-08-27 Thread Laurent Godard
Hi Juergen one other point is that our wiki is not suitable for translation and it is very important to lower the entry barrier that is true but it is true for everything else in the wiki sure ! and more needed than for snippets, I agree Laurent -- Laurent Godard [EMAIL PROTECTED

Re: [api-dev] Moving CoceSnippets into the Wiki?

2007-08-25 Thread Laurent Godard
://wiki.services.openoffice.org/wiki/API/Samples/StarBasic/Office/SpellChecker May be one should write a small guidelines on how edit/create a new snippet and teh basic copy/past information Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise

Re: [api-dev] Moving CoceSnippets into the Wiki?

2007-08-20 Thread Laurent Godard
for newcommers so that they can check the official documentation one other point is that our wiki is not suitable for translation and it is very important to lower the entry barrier Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo

Re: [api-dev] Moving CoceSnippets into the Wiki?

2007-08-17 Thread Laurent Godard
, a lightened version af teh snippet creator taht would create the Wiki-form of the snippet would be usefull ? Not mandatory for people wanting to contribute, but still usefull for newcommers ? any opinion ? Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http

Re: [api-dev] Moving CoceSnippets into the Wiki?

2007-08-17 Thread Laurent Godard
Hi tend to agree how would you organize this by sections ? don't understand what do you mean, can try to explain it again actually, snippets are classified by Tom by languages, by product (writer, calc ...) i think we should keep this classification laurent -- Laurent Godard [EMAIL

Re: [api-dev] Draw imported graphic size

2007-07-18 Thread Laurent Godard
api to be used Thanks again, i let you know Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

[api-dev] Draw imported graphic size

2007-07-12 Thread Laurent Godard
); drawpage.add(graphicShape); refreshDocument(document); Object objShape = drawpage.getByIndex(0); XShape finalShape = (XShape) UnoRuntime.queryInterface(XShape.class, objShape); Size currentSize = finalShape.getSize(); // width height = 100 -- Laurent

Re: [api-dev] Is there an example for packaging macros as an extension somewhere ?

2007-07-11 Thread Laurent Godard
-- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] Getting the TextFields directly of a table (Writer)

2007-06-13 Thread Laurent Godard
Hi Micheal But how can I access the content of the TextField in the cell?! Look at the anchors and compare their relative position with for example compareRegionEnds method Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise

Re: [api-dev] Introductionary information on scripting various OOo modules (meant for OOo newbies) ...

2007-05-21 Thread Laurent Godard
HI you may perharps add a page in the extensions project http://wiki.services.openoffice.org/wiki/Extensions_development there are some entries for starting guides thanks for sharing this with us Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http

Re: [api-dev] Specify the user installation while connection to OO from Java

2007-04-19 Thread Laurent Godard
-- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] external application getting OOo version number

2007-03-22 Thread Laurent Godard
= nodepath aParams2(0).Value = /org.openoffice.Setup/Product aSettings = aConfigProvider.createInstanceWithArguments( com.sun.star.configuration.ConfigurationAccess, aParams2() ) RecupereVersionOOO=aSettings.getbyname(ooSetupVersion) end function -- Laurent Godard [EMAIL PROTECTED] - Ingénierie

Re: [api-dev] external application getting OOo version number

2007-03-22 Thread Laurent Godard
number (build) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] about online dictionary

2007-02-13 Thread Laurent Godard
Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] [code snippet] Improve sorting capabilities

2007-02-09 Thread Laurent Godard
Hi stefan For me translating in english makes sens, at least, as proposed, the comment lines. I did that now, hopefully in understandable english, and sent an updated snip-File to the list. Thansk a lot !!! Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http

Re: [api-dev] [code snippet] Improve sorting capabilities

2007-02-09 Thread Laurent Godard
may have a loook at X-Ray from Bernard Marcelly http://wiki.services.openoffice.org/wiki/Extensions_development_basic#X-Ray_tool Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http

Re: [api-dev] [code snippet] Improve sorting capabilities

2007-02-08 Thread Laurent Godard
. Then if someone volunteers to translate to an other language, it can do it (an for example put it in the extension xiki ?) Anyway, thanks again for your snippet Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management

Re: [api-dev] [code snippet] Improve sorting capabilities

2007-02-06 Thread Laurent Godard
? any volunteer for translating ? (unfortunatelly, my german is far too old) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org

Re: [api-dev] Status bar API ?

2006-12-29 Thread Laurent Godard
Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

[api-dev] Status bar API ?

2006-12-28 Thread Laurent Godard
Hi all is there any API for playing with the status bar and adding a text and/or an icon ? i do not speak about the progressbar but somewhere to put a an information about the document that is always visible Thanks in advance Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie

Re: [api-dev] getCellAddress() returns garbage

2006-12-22 Thread Laurent Godard
platform ? Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

Re: [api-dev] getCellAddress() returns garbage

2006-12-22 Thread Laurent Godard
Hi Andrew Yes, FC6 AMD64, standard distro, which means that it also includes the Novell stuff. may be the problem is related to this http://www.openoffice.org/issues/show_bug.cgi?id=71815 I relayed to Caolan Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http

Re: [api-dev] [Announcement] Xray 5.2

2006-12-11 Thread Laurent Godard
://wiki.services.openoffice.org/wiki/Extensions_development_basic#X-Ray_tool Bernard, what do you think having an a-own page for Xray starting guide in the extensions wiki ? Thanks again Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise

Re: [api-dev] Array - max elements number

2006-11-28 Thread Laurent Godard
/lgodard/bigfile.txt for input as #1 while not eof(1) line input #1, aLine counter = counter + 1 myArray(counter) = aLine wend close #1 print ok cstr(counter) end sub -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org

Re: [api-dev] Array - max elements number

2006-11-28 Thread Laurent Godard
i as Long Dim MaxIndex as Long is ok (the limit is then 2.147.483.647) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles

Re: [api-dev] Newbie inserting text where the cursor is (java)

2006-11-13 Thread Laurent Godard
for it? instead of playing with a Cursor, play with the ViewCursor object http://api.openoffice.org/docs/common/ref/com/sun/star/text/XTextViewCursorSupplier.html#getViewCursor Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content

Re: [api-dev] possibility to make readonly/locked objects

2006-10-26 Thread Laurent Godard
Hi knut Is it possible to make single objects read-only, for example tables, bookmarks and paragraphs? you can embed them in sections that can be made read-only Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content

Re: [api-dev] status of XGalleryThemeProvider

2006-10-20 Thread Laurent Godard
weeks will have been passed, I'll finally publish the API for the next OOo minor-release/milestone. i'll relay this call as some french user may have some questions and requirements :) thanks a lot Kai Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http

Re: [api-dev] status of XGalleryThemeProvider

2006-10-19 Thread Laurent Godard
this question ? a snippet is being created on a french user work basis discovering this api and using it but i do not want to advertize API that are not published and can be removed/modified without any warning so my question Thanks Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie

Re: [api-dev] iterating over text

2006-10-19 Thread Laurent Godard
with the old API. I second you in this request :) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http://www.nuxeo.org Livre Programmation OpenOffice.org, Eyrolles 2004-2006

[api-dev] status of XGalleryThemeProvider

2006-10-16 Thread Laurent Godard
Hi http://api.openoffice.org/docs/common/ref/com/sun/star/gallery/XGalleryThemeProvider.html is marked as unpublished are there any plan on this ? how long does something stay unbpublished ? thanks in advance Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http

Re: [api-dev] How to assign keyboard shortcut to add-on menu

2006-10-13 Thread Laurent Godard
by XAcceleratorConfiguration.setKeyEvent) and not by a XCU file ? Thank you if you can confirm this (in which case I feel a bit disapointed...). did you try to add a ~ in your string defining the menu ? Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo

Re: [api-dev] Tweaking the api for performance

2006-10-13 Thread Laurent Godard
Hi kent did you have a oook at lockControllers and unlockControllers ? http://api.openoffice.org/docs/common/ref/com/sun/star/frame/XModel.html#lockControllers Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management

Re: [api-dev] Calc: Switch DesignMode On/Off

2006-10-10 Thread Laurent Godard
Hi how to switch Design Mode on/off via macro in Calc? did you try thisComponent.ApplyFormDesignMode = true|false Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org - http://www.indesko.com Nuxeo Enterprise Content Management http://www.nuxeo.com - http

[api-dev] physical directory of an extension

2006-10-02 Thread Laurent Godard
to work :( so i want to use ScriptProvider API (if it is more a udk question, feel free to tell it) thanks in advance Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre

Re: [api-dev] throw exception from OOo Basic

2006-09-29 Thread Laurent Godard
time. thanks :) Post it here, may be someone will find time doing it for you Thanks again Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org

Re: [api-dev] How use OpenOffice API from java without start up OO?

2006-09-27 Thread Laurent Godard
frame. I thing this could be changed by alterating com.sun.star.comp.helper.Bootstrap.bootstrap(), that is, changing the way that xbootstrap is obtained or initialized. Can someone help me? did you try sunig Xvfb ? Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko

Re: [api-dev] Obscure documentation (Was: [api-dev] insertnewbookmark)

2006-09-27 Thread Laurent Godard
... and perharps recall in 6 months, as usual ;) i stop any polemic thread here Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

Re: [api-dev] Obscure documentation (Was: [api-dev] insertnewbookmark)

2006-09-26 Thread Laurent Godard
such as - translation - give examples in other programming language Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

Re: [api-dev] Announcement of the new Object Inspector

2006-09-22 Thread Laurent Godard
objects as treviews available ;-) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

Re: [api-dev] Announcement of the new Object Inspector

2006-09-22 Thread Laurent Godard
months ago in the IDE moreover, you can plug on IDL reference Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

[api-dev] Calc : merge a cell range

2006-09-20 Thread Laurent Godard
in merged A3) thanks Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

Re: [api-dev] Calc : merge a cell range

2006-09-20 Thread Laurent Godard
an UNO slot fordispatcher, i would guess there are some solution already in the code so an api thanks for the response :( Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre

[api-dev] DataArray magic

2006-09-20 Thread Laurent Godard
an array for each cell so a1:c1 has only one row -- ubound 0 try a ubound(oData(0)) you'll have 2 (a,b, and c) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation

[api-dev] OOoCon meeting on Extensions Project

2006-09-07 Thread Laurent Godard
to involved project (Framework, installer, l10n ...) Feel free to add any point or comment on this schedule Thanks and see you on monday Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org

Re: [api-dev] Unpublished UNO API

2006-08-17 Thread Laurent Godard
for Extensions designer if valuable (still do not know), dicussions may occur at here or better at [EMAIL PROTECTED] mailing list thanks again Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org

Re: [api-dev] Gap analysis for OpenOffice.org awt toolkit API

2006-07-14 Thread Laurent Godard
and (if possible) binding to datasource (a request) - windows that could be dockable like the stylist or the navigator - some auto-positioning (align to grid ?) of controls more if i think to something btw, i'll relay your call on french lists thanks again Laurent -- Laurent Godard [EMAIL PROTECTED

Re: [api-dev] SOLVED: Show a message box with the UNO based toolkit

2006-07-02 Thread Laurent Godard
defining your example as class but may be it is useless (one can also think to enhacements like positionning) thanks for sharing this... in python :-) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps

Re: [api-dev] Mapping of the UNO type hyper in StarBasic

2006-06-23 Thread Laurent Godard
though Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

Re: [api-dev] how to make the macros available to all users of a Windows Terminal server

2006-05-23 Thread Laurent Godard
as a library in OOo either. Nothing shows up there. that is strange .. did you close OOo (quickstarter too) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation

Re: [api-dev] [Impress] - How to export all the slides in gif

2006-05-17 Thread Laurent Godard
Hi Jerome I would like to export all slides of a odp file in GIF format with as number gif files as number slides in de odp file. Is anyone have a solution ? you may find the solution here http://oooconv.free.fr/oooconv/oooconv_fr.html Regards laurent -- Laurent Godard [EMAIL PROTECTED

Re: [api-dev] use of css.awt.UnoControlScrollBarModel

2006-05-15 Thread Laurent Godard
tests using the listener for updating the client frame position. could you please paolo show us the result with a code snippet (i may help on testing if needed) thanks laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http

Re: [api-dev] Easy to use complex toolbar controls for add-ons

2006-05-15 Thread Laurent Godard
to a basic macro http://api.openoffice.org/docs/common/ref/com/sun/star/awt/XListBox.html I'll try to install the last m16x to see exactly this feauture working thanks to the provided example. Thanks again Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http

Re: [api-dev] Easy to use complex toolbar controls for add-ons

2006-05-15 Thread Laurent Godard
are expecting to have access to the standard features and events of such controls and that's why i told about the awt controls Thanks Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org

Re: [api-dev] Easy to use complex toolbar controls for add-ons

2006-05-15 Thread Laurent Godard
for the dispatch object in a global container of such objects. I will draw up this in a more detailed manner. each toolbar objects has a name so a getByName like over a sequence could be a solution thanks again let us know Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http

Re: [api-dev] OfficeToolbar titlebar?

2006-05-15 Thread Laurent Godard
-- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004 - To unsubscribe, e-mail

Re: [api-dev] Easy to use complex toolbar controls for add-ons

2006-05-14 Thread Laurent Godard
?) Mathias, this is only rough ideas and need to be discussed Any comments is welcommed Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles

Re: [api-dev] use of css.awt.UnoControlScrollBarModel

2006-05-14 Thread Laurent Godard
implement both horizontal and vertical slides but as i already told, i've never experimented this object The code runs without any errors but I don't see any movement when I move the slider. same for me, i'll try to invistigate Let us know Laurent -- Laurent Godard [EMAIL PROTECTED

Re: [api-dev] Easy to use complex toolbar controls for add-ons

2006-05-10 Thread Laurent Godard
that Paolo already asked something like this, no ? a way could be a generic service taking the macro name as argument and doing a transparent relay. Would it be difficult to do ? i do not think so thanks again, i'll try asap Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org

Re: [api-dev] Where Is a List of Version and Build Numbers?

2006-04-27 Thread Laurent Godard
thoink this answers your question http://development.openoffice.org/releases/OpenOffice_org_2_x.html HTH Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation

[api-dev] Lockcontrollers keyboard

2006-04-05 Thread Laurent Godard
-- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004 - To unsubscribe, e-mail

Re: [api-dev] Impossible to close a Base document

2006-03-14 Thread Laurent Godard
Hi Frank I reproduced the problem ... dbDoc.close(True) The document usine.odb shows up, but the close instruction receives an exception. what kind of exception? com.sun.star.util.CloseVetoException Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http

Re: [api-dev] Impossible to close a Base document

2006-03-14 Thread Laurent Godard
-- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004 - To unsubscribe, e-mail

Re: [api-dev] Impossible to close a Base document

2006-03-14 Thread Laurent Godard
Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004 - To unsubscribe, e

Re: [api-dev] Impossible to close a Base document

2006-03-14 Thread Laurent Godard
the DatabaseContext.getByName( url ).getDatabaseDocument() way, as described in another mail). But we should try to be consistent here. Issue filed : http://www.openoffice.org/issues/show_bug.cgi?id=63162 thanks :-) Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko

Re: [api-dev] Code Snippet page

2006-03-08 Thread Laurent Godard
of the extension project Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

Re: [api-dev] OOoBean correct termination

2006-03-06 Thread Laurent Godard
terminate) we discussed ? Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http://www.nuxeo.com - http://www.cps-project.org Livre Programmation OpenOffice.org, Eyrolles 2004

Re: [api-dev] Java Snippet Suggestion: how to convert documents - please review

2006-03-06 Thread Laurent Godard
and call for translators (from eglish to other languages) - joining the extensions project [EMAIL PROTECTED] - OOoWiki http://wiki.services.openoffice.org/wiki/Main_Page Laurent -- Laurent Godard [EMAIL PROTECTED] - Ingénierie OpenOffice.org Indesko http://www.indesko.com Nuxeo CPS http

  1   2   >