[api-dev] Page Style for a Dictionary

2009-09-03 Thread Jonathan Kaye
Hi all, I posted this several days ago on comp.openoffice.questions and haven't received anything I can use to solve the problem. Any ideas out there? This may be a tricky one. I am helping to produce a dictionary and things are nearing completion thanks to the outstanding support from the

Re: [api-dev] Page Style for a Dictionary

2009-09-03 Thread Thomas Lange - Sun Germany - ham02 - Hamburg
Hi Jonathan, Jonathan Kaye wrote: Hi all, I posted this several days ago on comp.openoffice.questions and haven't received anything I can use to solve the problem. Any ideas out there? This may be a tricky one. I am helping to produce a dictionary and things are nearing completion thanks

[api-dev] Writer notes containing hyperlink

2009-09-03 Thread Bernard Marcelly
Hi developers, Could someone have a look at Issue 104513 : Writer notes containing hyperlink cannot be read by API http://www.openoffice.org/issues/show_bug.cgi?id=104513 I reproduce it again on 3.1.1. This is very disturbing because using correct API instructions you read only a part of a

[api-dev] Update on the ODF/PDF of the Dev Guide.

2009-09-03 Thread Clayton
Just a quick update for you guys. I've finally updated the DevGuide ODF and PDF on: http://wiki.services.openoffice.org/wiki/Documentation/Wiki_Books All chapters are in reasonable shape. The full book as one file has been uploaded in both ODT and PDF. This is as far as I plan to take these

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

2009-09-03 Thread Krzysztof Rączkiewicz
Hi, first I was directed to d...@openoffice group but I think that this one is more proper for my problem. I'm developing Java addon for OO3.1. (OOO310m11 Build: 9399) I'm having toggledropdown control and when user select something from that control I get to: - public void dispatch(URL aURL,

[api-dev] Re: Page Style for a Dictionary

2009-09-03 Thread Jonathan Kaye
Drew Jensen wrote: Thomas Lange - Sun Germany - ham02 - Hamburg wrote: Hi Jonathan, I have asked around, and no we have no means of creating such a page style. Also no one could think off different means to produce a similar effect. Thus I'm afraid you are the first one who ever

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

2009-09-03 Thread Carsten Driesner
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. I'm developing Java addon for OO3.1. (OOO310m11 Build: 9399) I'm having toggledropdown control and when user select something from that control I get to: -

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

2009-09-03 Thread Krzysztof Rączkiewicz
Carsten Driesner pisze: Could you please tell me more about your use case? I don't know if you use the complex toolbar controls feature or a dropdownbox within a UNO AWT dialog. I would guess the first case but you can definitely tell me. Do you have a link where I can download the add-on to

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

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 Krzysztof Rączkiewicz
Ariel Constenla-Haile pisze: seems this should be aSelectedText = m_pListBoxControl-GetSelectEntry(); instead of aSelectedText = m_pListBoxControl-GetText(); yes, now with m_pListBoxControl-GetSelectEntry() works fine ok, thanks for checking that. I suppose I will need to use

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

2009-09-03 Thread Ariel Constenla-Haile
Hello Krzysztof, On Thursday 03 September 2009, 14:29, Krzysztof Rączkiewicz wrote: seems this should be aSelectedText = m_pListBoxControl-GetSelectEntry(); instead of aSelectedText = m_pListBoxControl-GetText(); yes, now with m_pListBoxControl-GetSelectEntry() works fine ok,