[api-dev] Re: Open Ended Arrays or Similar Data Structures

2011-06-18 Thread Ariel Constenla-Haile
to be declared with a set number of members.) search in the OOo help ReDim Sub Test_Array Dim arr(0) as Integer arr(0) = 0 Dim i% For i = 1 To 10 ReDim Preserve arr(i) arr(i) = i Next End Sub Regards -- Ariel Constenla-Haile

[api-dev] Re: Adding Items to a Sub-Menu

2011-06-15 Thread Ariel Constenla-Haile
in OOo Basic, you must code in Java, C++ or Python. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

[api-dev] Re: Invoking macros via toolbar items: where does the argument come from ?

2011-05-25 Thread Ariel Constenla-Haile
of 0 (false?). Where does this argument come from and what is its purpose, where can one find the documentation for this? there is an explanation in http://openoffice.org/bugzilla/show_bug.cgi?id=85298#c3 Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description

[api-dev] Re: MailMerge settings

2011-05-11 Thread Ariel Constenla-Haile
://svn.services.openoffice.org/opengrok/xref/DEV300_m106/sw/source/core/doc/docfld.cxx#1947 Hope this helps. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Are there changes to the resourceURL 's ?

2010-12-21 Thread Ariel Constenla-Haile
/standardbar is prentent stoolbar = private:resource/menubar/menubar this is the resource URL for the MenuBar! May be a copy paste mistake. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] use of css.container.EnumerableMap

2010-12-18 Thread Ariel Constenla-Haile
{ System.exit( 0 ); } } Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] use of css.container.EnumerableMap

2010-12-18 Thread Ariel Constenla-Haile
On Saturday 18 December 2010, 21:34:00, Ariel Constenla-Haile wrote: IMHO the wrong choice was to use the UNO type instead of com.sun.star.uno.TypeClass. With TypeClass and the support for new-style service constructor, it could have been as simple as: Dim aMap aMap

Re: [api-dev] list of supported Dispatch commands

2010-12-08 Thread Ariel Constenla-Haile
/smslots.hxx -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Copy textstring to Clipboard SOLVED

2010-12-02 Thread Ariel Constenla-Haile
/openoffice.org/basis3.4/sdk/examples/DevelopersGuide/OfficeDev/Clipboard/ Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Re: Examining a directory with OpenOffice.org Basic

2010-12-01 Thread Ariel Constenla-Haile
, _ com.sun.star.text.ControlCharacter.PARAGRAPH_BREAK, false ) Next End Sub Function getHomeDir() as String Dim oPaths oPaths = CreateUnoService(com.sun.star.util.PathSubstitution) getHomeDir() = oPaths.getSubstituteVariableValue($(home)) End Function Regards -- Ariel Constenla-Haile La

Re: [api-dev] simpress: printing handouts programmatically, howto ?

2010-07-13 Thread Ariel Constenla-Haile
Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] simpress: printing handouts programmatically, howto?

2010-07-13 Thread Ariel Constenla-Haile
(oDoc.getSupportedServiceNames(), Chr(9)), 64, Supported Services oHandout.setPropertyValue(Layout, AUTOLAYOUT_HANDOUT6 ) End Sub Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] How to configure my program to build for using OOo

2010-06-23 Thread Ariel Constenla-Haile
external libraries, it should work out of the box. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Generating the platform string for an extension

2010-05-25 Thread Ariel Constenla-Haile
are using the approach of echoing the description.xml, as the SDK makefiles do with the manifest.xml). Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Generating the platform string for an extension

2010-05-25 Thread Ariel Constenla-Haile
library in the manifest.xml. We will unify the use of the tokens in one of the future releases. I couldn't find any issue about this in the issue tracker. Do you have any idea if this is already planned? (This will be the real solution for the OP) Regards -- Ariel Constenla-Haile La Plata

Re: [api-dev] api: example for working with impress?

2010-05-24 Thread Ariel Constenla-Haile
/examples/DevelopersGuide/Drawing/PresentationDemo.java it's rather old, so it does not cover new features, like the very useful SlideShowController. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Generating the platform string for an extension

2010-05-24 Thread Ariel Constenla-Haile
and hard code it, or you need something more portable? Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] java-macro: Not able to access CurrentComponent?

2010-05-23 Thread Ariel Constenla-Haile
for settings. There may be some other solution that satisfies your needs. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] options for the pdf export

2010-05-23 Thread Ariel Constenla-Haile
Hello Bernard, On Sunday 23 May 2010, 09:45, Bernard Marcelly wrote: Message de Ariel Constenla-Haile date 2010-05-21 04:34 : Hello Andreas, On Thursday 20 May 2010, 15:01, Andreas Mantke wrote: I have a look on the wiki site (http://wiki.services.openoffice.org/wiki/API/Tutorials

Re: AW: [api-dev] java-macro: Not able to access CurrentComponent?

2010-05-23 Thread Ariel Constenla-Haile
-In should not modify the document (a sheet, a range, etc). OOo Calc Developers read this mailing list, so sure they will give on Monday a more accurate opinion. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] java-macro: Not able to access CurrentComponent?

2010-05-22 Thread Ariel Constenla-Haile
for any Help, Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: AW: [api-dev] java-macro: Not able to access CurrentComponent?

2010-05-22 Thread Ariel Constenla-Haile
reference on which the script can operate * getComponentContext Obtain the component context which the script can use to create other uno components but your code is NO Java-macro; it is a UNO component. What are you developing? a Java macro or a UNO component? Regards -- Ariel Constenla

Re: AW: AW: [api-dev] java-macro: Not able to access CurrentComponent?

2010-05-22 Thread Ariel Constenla-Haile
/AddIn.html Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: AW: AW: [api-dev] java-macro: Not able to access CurrentComponent?

2010-05-22 Thread Ariel Constenla-Haile
On Saturday 22 May 2010, 16:30, Ariel Constenla-Haile wrote: Hello Martin, On Saturday 22 May 2010, 15:28, Martin Dobiasch wrote: Okay. My Mistake. Its a Uno Component which provides add in for calc (I used the *Moft* Word for this) So as it is java it seems that I don't have access

Re: [api-dev] options for the pdf export

2010-05-20 Thread Ariel Constenla-Haile
/Export_PDF_Watermark.bas Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Using transformation matrices

2010-05-16 Thread Ariel Constenla-Haile
/ReadMsg?list=devmsgNo=1691 and browse that mail's thread. Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Using transformation matrices

2010-05-16 Thread Ariel Constenla-Haile
-- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] info/CWS slidecopy : +css.ui.UIElementType.TOOLPANEL / css.ui.XToolPanel

2010-04-29 Thread Ariel Constenla-Haile
this right: now every OOo application will be able to display a Task panel (now only available in OOo Impress); and extension developers can add a custom task to the panel. Am I right? Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message

Re: [api-dev] info/CWS slidecopy : +css.ui.UIElementType.TOOLPANEL / css.ui.XToolPanel

2010-04-29 Thread Ariel Constenla-Haile
of many extensions providing lots of docking windows by themselves). Looking forward to try this out (I hope I can resist to check out and build this cws). Regards -- Ariel Constenla-Haile La Plata, Argentina signature.asc Description: This is a digitally signed message part.

Re: [api-dev] Questions about the service com.sun.star.frame.GlobalEventBroadcaster

2010-04-18 Thread Ariel Constenla-Haile
Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] Call Python script in OOo Basic

2010-04-06 Thread Ariel Constenla-Haile
can only imagine a Python UNO component. This way you simply use CreateUnoService() and start using your component's functionality . Of course, this may be too much for his current purpose (though it's rather easy to design a PyUNO component...). Regards -- Ariel Constenla-Haile La Plata

Re: [api-dev] options for the pdf export

2010-04-02 Thread Ariel Constenla-Haile
On Friday 02 April 2010, 19:44, Ariel Constenla-Haile wrote: EmbedStandardFonts on the other hand is missing. There is a cws that will add this option for all PDF formats while it is already available for PDF/A-1, see http://svn.services.openoffice.org/opengrok/xref/DEV300_m75/filter/source

Re: [api-dev] Windows and Linux portability queries

2010-03-27 Thread Ariel Constenla-Haile
. So, does shell or execute commands accept URLs ? I haven't tried that but my gut feel is it would not. So, would the conversion command take care of path separator? you can work always with URLs and then use OOo Basic convertFromURL when a sys path is needed. Regards -- Ariel Constenla-Haile

Re: [api-dev] Embedding data files in Calc and extracting on need

2010-03-20 Thread Ariel Constenla-Haile
(this would be different if you want to embed an xml file for example) Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h

Re: [api-dev] Embedding data files in Calc and extracting on need

2010-03-20 Thread Ariel Constenla-Haile
be different if you want to embed an xml file for example) Notice that I don't see a way to execute the extracted binary executable files if you don't change the file modes once extracted (when the file is embedded, that attribute is lost). Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] Example, snippet for creating and using an XCommandEnvironment, even better, deploying/removing packages via UNO ?

2010-03-20 Thread Ariel Constenla-Haile
/xref/DEV300_m75/javaunohelper/com/sun/star/comp/juhtest/SmoketestCommandEnvironment.java Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e

Re: [api-dev] Embedding data files in Calc and extracting on need

2010-03-19 Thread Ariel Constenla-Haile
Hello Madhur, On Friday 19 March 2010, 07:17, Madhur Kashyap wrote: I can't seem to find a way to embed arbitrary file(s) into calc spreadsheet. you need to use the embed API, cf. http://api.openoffice.org/docs/common/ref/com/sun/star/embed/module-ix.html Regards -- Ariel Constenla-Haile

Re: [api-dev] Embedding data files in Calc and extracting on need

2010-03-19 Thread Ariel Constenla-Haile
Hello Madhur, On Friday 19 March 2010, 08:02, Madhur Kashyap wrote: On Fri, Mar 19, 2010 at 4:10 PM, Ariel Constenla-Haile ariel.constenla.ha...@googlemail.com wrote: Hello Madhur, On Friday 19 March 2010, 07:17, Madhur Kashyap wrote: I can't seem to find a way to embed arbitrary

Re: [api-dev] How to get document's windows (position, size, moving) via UNO ?

2010-03-16 Thread Ariel Constenla-Haile
designed something ad hoc; that in fact does not work for your use case, because it checks you pass a valid parent window, and top windows have no parent: http://svn.services.openoffice.org/opengrok/xref/DEV300_m75/sd/source/ui/presenter/PresenterHelper.cxx#325 Regards -- Ariel Constenla-Haile La

Re: [api-dev] [OO API] Where does the reference points to?

2010-03-08 Thread Ariel Constenla-Haile
/ref/com/sun/star/text/textfield/GetReference.html Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] How to get document's windows (position, size, moving) via UNO ?

2010-03-03 Thread Ariel Constenla-Haile
). Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] How to get document's windows (position, size, moving) via UNO ?

2010-03-03 Thread Ariel Constenla-Haile
/DEV300_m73 Anyway this new interface does not help you with this current problem. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail

Re: [api-dev] css.sdb.application.XDatabaseDocumentUI: new methods

2010-02-18 Thread Ariel Constenla-Haile
-- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] options for the pdf export

2010-01-29 Thread Ariel Constenla-Haile
-- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] Working with awt windows

2010-01-10 Thread Ariel Constenla-Haile
, but received a tips from Ariel Constenla-Haile at framework that there are better ways. if you want to show a dialog when a menu item is selected, there are better ways than creating an AWT window on your own. An example code which I am trying to run is attached below

Re: [api-dev] How to handle XInterface objects in Basic

2010-01-06 Thread Ariel Constenla-Haile
: undocumented service com.sun.star.xml.sax.Parser http://www.openoffice.org/issues/show_bug.cgi?id=87783 IDL: undocumented service com.sun.star.xml.sax.Writer you can help to improve the docu over time by telling your colleagues to work on submitted issues ;-) Regards -- Ariel Constenla-Haile La

Re: [api-dev] Working with awt windows

2010-01-06 Thread Ariel Constenla-Haile
own, but received a tips from Ariel Constenla-Haile at framework that there are better ways. if you want to show a dialog when a menu item is selected, there are better ways than creating an AWT window on your own. An example code which I am trying to run is attached below, but this mailing

[api-dev] How to avoid Python bridge conversion of SequencePropertyValue to Sequence:Any

2009-12-28 Thread Ariel Constenla-Haile
hints on how to tell the PyUNO bridge to do things as really wanted are very welcome. Regards -- Ariel Constenla-Haile La Plata, Argentina # -*- coding: utf-8 -*- # sample client application # # Start OOo with the following command: #/opt/openoffice.org3/program/soffice -accept=socket,host

Re: [api-dev] Sharing macros with people…

2009-12-20 Thread Ariel Constenla-Haile
://wiki.services.openoffice.org/wiki/Documentation/DevGuide/Extensions/Extensions and http://wiki.services.openoffice.org/wiki/Non-code_extensions Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr

Re: [api-dev] Extension - Addon.xcu

2009-12-11 Thread Ariel Constenla-Haile
still present in the user ui-config. layer, and so in the Customize Toolbar... tab page) * if the DSB toolbar settings are not configurable in the sense of adding new toolbars, then you should not be allowed to configure a new one; instead be warned about this fact. Regards -- Ariel Constenla

Re: [api-dev] Extension - Addon.xcu

2009-12-08 Thread Ariel Constenla-Haile
to find out if it was renamed or merged. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] Extension - Addon.xcu

2009-12-08 Thread Ariel Constenla-Haile
, so use com.sun.star.sdb.DataSourceBrowser for the DataSourceBrowser. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h

Re: [api-dev] Missing interfaces in OOo 3.2: Why not a blocker?

2009-11-26 Thread Ariel Constenla-Haile
a TextCursor and a TextPortion are TextRanges). Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] Where can I find the SDK for OO 2.4.x?

2009-11-25 Thread Ariel Constenla-Haile
On Tuesday 24 November 2009, 04:58, Cor Nouws wrote: Ariel Constenla-Haile wrote (24-11-2009 0:58) On Monday 23 November 2009, 18:26, Marco Castillo wrote: I'm looking for the SDK for version 2.4.x of OpenOffice. Can someone show me a link where I can download it? it seems

Re: [api-dev] Where can I find the SDK for OO 2.4.x?

2009-11-23 Thread Ariel Constenla-Haile
/openoffice-archive/stable/ Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] loadcomponentfromurl

2009-11-05 Thread Ariel Constenla-Haile
? Thus, I thought I could pass in the character encoding set for it to open by using ChracterSet UTF8 in the media descriptor. However, this didn't work even with UTF8. Do I have to use this with some filter implementation? If so, how can i do that? Regards -- Ariel Constenla-Haile La

Re: [api-dev] HowTo Customize Number Formats

2009-10-22 Thread Ariel Constenla-Haile
://wiki.services.openoffice.org/wiki/Documentation/DevGuide/OfficeDev/Number_Formats where things are explained in detail (at least on this case) It appears to be impossible to add another number format type. yes, it is possible (but at document level, as stated in the Dev's Guide). Regards -- Ariel Constenla-Haile

Re: [api-dev] OO API during slide show

2009-10-22 Thread Ariel Constenla-Haile
shapes while the presentation is running) Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] HowTo Customize Number Formats

2009-10-22 Thread Ariel Constenla-Haile
a css.task.Job that will be invoked onDocumentOpened (== OnNew + OnLoad), check if the document already has the num. format, and if not then add it. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev

Re: [api-dev] Bad page numbers when updating table of contents

2009-10-16 Thread Ariel Constenla-Haile
attached is a Python version of http://wiki.services.openoffice.org/wiki/API/Tutorials/PDF_export#Accessing_the_configuration Regards -- Ariel Constenla-Haile La Plata, Argentina # -*- coding: utf-8 -*- # sample client application import uno import unohelper from com.sun.star.beans import

Re: [api-dev] Bad page numbers when updating table of contents

2009-10-15 Thread Ariel Constenla-Haile
if this works headless. Try it and tell. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] java MailMerger for open office 3.1.1

2009-10-13 Thread Ariel Constenla-Haile
like removing toolbar items this is no minor issue, at least not for the one that had the problem and tried to solved it, looking for help here. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev

Re: [api-dev] java MailMerger for open office 3.1.1

2009-10-13 Thread Ariel Constenla-Haile
(not sure it ever did on something = OOo 2.0). Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] How to remove toolbars items

2009-10-12 Thread Ariel Constenla-Haile
. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

[api-dev] css.document.XDocumentEventBroadcaster supported since when and by who?

2009-10-11 Thread Ariel Constenla-Haile
with the old one. Is XDocumentEventBroadcaster supported? By which services? since when? Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail

[api-dev] oochemistry plugin

2009-10-10 Thread Ariel Constenla-Haile
, an Eclipse project, etc. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] How to remove toolbars items

2009-10-10 Thread Ariel Constenla-Haile
for sample code at http://arielch.fedorapeople.org/docs/com.sun.star.ui.XUIConfigirationManager.odt Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional

Re: [api-dev] How to remove toolbars items

2009-10-10 Thread Ariel Constenla-Haile
get a null reference). In your case, query XUIConfigurationManagerSupplier As it may be quite difficult to remember all interfaces an object implements, for learning the OOo API you may find useful a tool called Xray that can introspect every object in OOo API. Regards -- Ariel Constenla-Haile

Re: [api-dev] Progress on exporting the Dev Guide to ODT and PDF

2009-09-09 Thread Ariel Constenla-Haile
impossible due to issue http://qa.openoffice.org/issues/show_bug.cgi?id=84159 Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h

Re: [api-dev] Re: Calc - Column/Row Headers from macro

2009-09-07 Thread Ariel Constenla-Haile
/SpreadsheetViewSettings.html#HasColumnRowHeaders Supposing ThisComponent is a Calc doc., and it has a controller, you can do ThisComponent.getCurrentController().setPropertyValue(_ HasColumnRowHeaders, True) Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] empty string in PropertyValue in dispatch method

2009-09-03 Thread Ariel Constenla-Haile
On Thursday 03 September 2009, 12:23, Ariel Constenla-Haile wrote: Hello Carsten, On Thursday 03 September 2009, 10:35, Carsten Driesner wrote: Krzysztof Rączkiewicz wrote: Hi, first I was directed to d...@openoffice group but I think that this one is more proper for my problem

Re: [api-dev] empty string in PropertyValue in dispatch method

2009-09-03 Thread Ariel Constenla-Haile
On Thursday 03 September 2009, 12:28, Ariel Constenla-Haile wrote: On Thursday 03 September 2009, 12:23, Ariel Constenla-Haile wrote: Hello Carsten, On Thursday 03 September 2009, 10:35, Carsten Driesner wrote: Krzysztof Rączkiewicz wrote: Hi, first I was directed to d

Re: [api-dev] empty string in PropertyValue in dispatch method

2009-09-03 Thread Ariel Constenla-Haile
On Thursday 03 September 2009, 13:23, Ariel Constenla-Haile wrote: you can reproduce it with your C++ SDK example (see the diff I attached here, the example must be compiled with make DEBUG=yes). Whenever a color from the listbox is selected, it prints Thread: 1

Re: [api-dev] empty string in PropertyValue in dispatch method

2009-09-03 Thread Ariel Constenla-Haile
://wiki.services.openoffice.org/wiki/OOoRelease32 ), released by end of November. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h

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

2009-08-30 Thread Ariel Constenla-Haile
to each button; etc. etc. use your imagination) Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

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

2009-08-30 Thread Ariel Constenla-Haile
Hello Drew, On Sunday 30 August 2009, 13:49, Drew Jensen wrote: Ariel Constenla-Haile wrote: Sub BtnPressed(oEvent as Object) Dim oControl as Object Dim oModel as Object oControl = oEvent.Source oModel = oControl.getModel() End Sub In this way, you can

Re: [api-dev] An export macro in OpenImpress

2009-08-26 Thread Ariel Constenla-Haile
() and NOT oDoc.isReadonly() Then oDoc.store() Else oDoc.storeAsURL(sBaseURL + / + FOLDER_NAME + .odp, Array()) End If End Sub Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] How do I close the QuickStarter via command-line or Window messages?

2009-08-24 Thread Ariel Constenla-Haile
/opengrok/xref/DEV300_m55/sfx2/source/appl/shutdowniconw32.cxx Jan can keep an eye on them while submitting an issue (I guess sfx2 belongs to the framework team) and wait for it to be fixed. Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] How do I close the QuickStarter via command-line or Window messages?

2009-08-24 Thread Ariel Constenla-Haile
Hello Jan, On Monday 24 August 2009, 17:28, Jan Holst Jensen wrote: Ariel Constenla-Haile wrote: the quickstarter listens for desktop termination. AFAIK you have to options 1) You can tell it not to throw a veto, this way: Sub Quickstater Dim oQS as Object oQS

Re: [api-dev] How do I close the QuickStarter via command-line or Window messages?

2009-08-23 Thread Ariel Constenla-Haile
oQS as Object oQS = CreateUnoService(com.sun.star.office.Quickstart) Dim aAny(1) aAny(0) = False aAny(1) = False oQS.initialize(aAny) End Sub Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] DockingWindows Java

2009-08-23 Thread Ariel Constenla-Haile
for gets closed, you have to listen for the document closing event. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h

Re: [api-dev] ODT to Windows Help file format - help needed in more than one sense.

2009-08-12 Thread Ariel Constenla-Haile
). Does a PDF-to-Help-file converter exist (as a last resort) ? I've seen html to chm, chm to html, chm to pdf, but pdf to chm not. You should Google PDF to CHM and see if there is something useful. Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] Need to download the OOo 2.1 Source

2009-08-12 Thread Ariel Constenla-Haile
:2401/cvs ]$ cvs login Logging in to :pserver:anon...@anoncvs.services.openoffice.org:2401/cvs CVS password: type anoncvs ]$ cvs co OpenOffice2/OpenOffice_2_1_0 Regards -- Ariel Constenla-Haile La Plata, Argentina

[api-dev] NetBeans OOo API plug-in for NB 6.7

2009-07-07 Thread Ariel Constenla-Haile
Hi all, as NB 6.7 is out there, the question will come: is there a release date for the OOo API plug-in for NB 6.7? Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr

[api-dev] Re: [interface-discuss] adding a method to a published interface

2009-06-29 Thread Ariel Constenla-Haile
. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

[api-dev] Re: I have five text frames on the one page, can I move each frame to a new page?

2009-06-24 Thread Ariel Constenla-Haile
page. You will have to fix other things to achieve what you're looking for. Regards -- Ariel Constenla-Haile La Plata, Argentina package org.openoffice.sdk; import com.sun.star.awt.Size; import com.sun.star.beans.PropertyValue; import com.sun.star.beans.XPropertySet; import

Re: [api-dev] RV: Embedded Image

2009-06-23 Thread Ariel Constenla-Haile
Hello Emilio, On Tuesday 23 June 2009, 11:09, Emilio Cano - Tecnotur 3000 wrote: Hello!! I have not received a response on this issue. you got answered the very same day http://api.openoffice.org/servlets/BrowseList?list=devby=threadfrom=2243227 Regards -- Ariel Constenla-Haile La Plata

Re: [api-dev] Problems with handling a xTextEmbeddedObject

2009-06-21 Thread Ariel Constenla-Haile
Regards -- Ariel Constenla-Haile La Plata, Argentina /* * EmbeddedCalcResizer.java * */ package org.openoffice.sdk; import com.sun.star.awt.Size; import com.sun.star.beans.PropertyValue; import com.sun.star.beans.XPropertySet; import com.sun.star.comp.helper.Bootstrap; import

Re: [api-dev] Embedded Image

2009-06-16 Thread Ariel Constenla-Haile
=devmsgNo=20941 Now just use the Graphic property, instead of the GraphicURL. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h

Re: [api-dev] Embedded Image

2009-06-16 Thread Ariel Constenla-Haile
) If InStr(sPath, ;) Then Dim sPaths() sPaths = Split(sPath, ;) sPath = sPaths(0) End If getGalleryPath = sPath End Function Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] NB plug-in: Debug Extension in Target OOo fails on OOO310_m11

2009-05-18 Thread Ariel Constenla-Haile
this on Windows. this means no debugging at all (even attaching) on Linux and Solaris. I guess API developers on these plataforms will need you to upload somewhere a patched build of jvmfwk (or wait untill 3.1.1?) Regards -- Ariel Constenla-Haile La Plata, Argentina setting up UNO environment

Re: [api-dev] Unfortunate document event name - how to fix it?

2009-05-17 Thread Ariel Constenla-Haile
that the documentation writer must have a *deep* knowledge of the API (which you get not simply by reading its specification, but working the API) and *some* knowledge about its specification (because he may need to know the internals in order to understand how something works). Regards -- Ariel Constenla

Re: [api-dev] Proposal: first convention to discuss API changes in the future

2009-05-16 Thread Ariel Constenla-Haile
extensions with Firefox's or Kde's. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

[api-dev] NB plug-in: Debug Extension in Target OOo fails on OOO310_m11

2009-05-16 Thread Ariel Constenla-Haile
] sunjavaplugin.soCan not create Java Virtual Machine Of course, with this Debug Extension in Target OOo option, a new user dir. is created on the build dir., which has no Java settings (as it's a brand new user dir.). In OOo 3.0.1 everything works. Any hints? Regards -- Ariel Constenla-Haile La Plata

Re: [api-dev] Proposal: first convention to discuss API changes in the future

2009-05-14 Thread Ariel Constenla-Haile
appears, or the version where it will be integreted? in the later case, quite impossible to guess. Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional

Re: [api-dev] Proposal: first convention to discuss API changes in the future

2009-05-14 Thread Ariel Constenla-Haile
://wiki.services.openoffice.org/wiki/API/SDK/Features/3.1 Interpret it more as PROPOSED.API.CHANGE-4.0 but i wanted keep it shorter. Maybe you have a better idea? mmm... no, sorry for the lack of imagination. Regards -- Ariel Constenla-Haile La Plata, Argentina

Re: [api-dev] Unfortunate document event name - how to fix it?

2009-05-14 Thread Ariel Constenla-Haile
-- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

Re: [api-dev] Unfortunate document event name - how to fix it?

2009-05-14 Thread Ariel Constenla-Haile
Hello Mathias, On Wednesday 13 May 2009, 14:14, Mathias Bauer wrote: The best documentation is an API that doesn't need one. This deals with the fact that people don't like to read documentation. Having speaking names for events is a good thing per se, not just some language aesthetics. +1

Re: [api-dev] Proposal: first convention to discuss API changes in the future

2009-05-14 Thread Ariel Constenla-Haile
/AccessibleRelationType.idl#117 vs. http://api.openoffice.org/docs/common/ref/com/sun/star/accessibility/AccessibleRelationType.html#NODE_CHILD_OF Regards -- Ariel Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr

Re: [api-dev] Proposal: first convention to discuss API changes in the future

2009-05-14 Thread Ariel Constenla-Haile
Constenla-Haile La Plata, Argentina - To unsubscribe, e-mail: dev-unsubscr...@api.openoffice.org For additional commands, e-mail: dev-h...@api.openoffice.org

  1   2   3   >