[api-dev] Re: com.sun.star.sheet.GeneralFunction.COUNT ?

2010-10-14 Thread aladdin
Hi, > It's issue 109350. See > http://qa.openoffice.org/issues/show_bug.cgi?id=109350 for a description > how to make it run in 3.2.1. Thanks for the tips, I didn't catch this issue. Thank you, best regards. - To unsubscri

[api-dev] com.sun.star.sheet.GeneralFunction.COUNT ?

2010-10-13 Thread aladdin
Hi everyone, I'm trying to create datapilot with the API but I'm getting a strange thing when I try to set the function I want to apply to the datapilot field. Check the attachment[1] : 1/ Click on the button Create Datapilot 2/ Check the datapilot you'll see that the function applied to "Produi

[api-dev] Re: Default path setting ?

2010-07-19 Thread Aladdin
Hi, > let me guess, you get some kind of error message when opening templates? > but the template does open anyway? Exactly. > this is caused by the new RDF metadata import in OOo 3.2. [..] > for OOo 3.2.x i'm not aware of a workaround for the problem. > well, other than ignoring the error m

[api-dev] Default path setting ?

2010-07-16 Thread Aladdin
Hi everyone, I'm trying to set a default template with an extension. Here is the xcu configuration file : http://www.pastie.org/1045423 The configuration works on 2.4, 3.0.1, 3.1.1 but it didn't work on 3.2.X. Is there any change in the path settings API on OOo 3.2.X, i t seems %origin% didn't

[api-dev] Re: Problems with protect method

2010-03-02 Thread Aladdin
Hi Cor, > Aladdin wrote (01-03-10 16:36) > > There is a little problem with the API when you protect a sheet. > > Indeed, you can modify the current password with the API. > > > > You can grab an example[1]. > > > > Is it a bug or a feat

[api-dev] Problems with protect method

2010-03-01 Thread Aladdin
Hi all, There is a little problem with the API when you protect a sheet. Indeed, you can modify the current password with the API. You can grab an example[1]. Is it a bug or a feature ? :) Thank you, best regards. [1] http://www.cijoint.fr/cj201003/cijDOOtjVE.ods ---

[api-dev] Re: Wanted! Extensions developers for testing

2009-07-22 Thread Aladdin
Hi Juergen, > mmh, it can't work. The OOo 3.1 SDK installs directly in the office > installation. Typically /opt/openoffice.org/basis3.1/sdk > > And the SDK is then found automatically. Where did you get the office > and the SDK from? I suggest taht you download both from > www.openoffice.org

[api-dev] Re: Wanted! Extensions developers for testing

2009-07-22 Thread Aladdin
Hi, > ok, can you define the OOo path and SDK first under Tools -> Options -> > Misc -> OOo Plugin ... and try again. Maybe we have a problem if this > settings are collected on demand in a wizard. We will check it. Same error, If I fill the information from Tools > Options > Misc > OOo API

[api-dev] Re: Wanted! Extensions developers for testing

2009-07-22 Thread Aladdin
Hi Steffen, > the bug you listed is not the one described in Juergen's mail. Also, > NetBeans 6.5 is no valid platform, since our plugin is for NetBeans 6.7 > solely. > Nevertheless we are interested in learning where you encountered that > behavior? Here is my report : http://statistics.netbe

[api-dev] Re: Wanted! Extensions developers for testing

2009-07-22 Thread Aladdin
Hi, > You can easy download and install it in your NetBeans. A known issue is > that when you use a new file wizard in an existing OOo project the > explorer view get not updated. The new file is created correct but not > visible. It appears after some delay or for example after an explicit > buil

[api-dev] Color palette extension ?

2009-04-02 Thread Aladdin
Hi, I'm tryig to deploy a color palette with extension (*.oxt) but it seems it didn't work. I have checked Path.xcs and Paths.xcu from the share registry, there is only : $(userurl)/config And I change the node to :

[api-dev] Text to Columns API ?

2009-02-16 Thread Aladdin
Hi, I was wondering if there is an API for text to columns, didn't find anything in the IDL reference. As this announcement [1], the box API/ BASIC [ ] is not checked so it means we can't access to this function via the API otherwise using the dispatcher ? Is it plan to add it ? Thank you, best

[api-dev] Re: Mailmerge + SQL query ?

2008-02-22 Thread Aladdin
Hi Alex, > I think you would probably need to establish a connection to the > database source and a db context first, and you would probably have to > "execute" the SQL rather than just use "command". I found a solution[1] : Sub TestMailMerge Dim myMailMerge As Object 'Service myMailMer

[api-dev] Mailmerge + SQL query ?

2008-02-19 Thread Aladdin
Hi there, I'm trying to do a mailmerge with SQL query, I have all my record (32 records equals 32 pages) but my datafield are empty ? Is there anything else to do than : myMailMerge.CommandType = com.sun.star.sdb.CommandType.COMMAND myMailMerge.Command = "SELECT * FROM biblio" Here is the sour