[api-dev] Solver developer snapshot for Visual Studio 2005 users (SRC680m199)

2007-01-24 Thread Carsten Driesner
Hi all, Some developers asked us to provide solver developer snapshots for Visual Studio 2005 (currently the official Windows compiler for OpenOffice.org is Visual Studio 2003). I'm glad to announce a solver developer snapshot for Visual Studio 2005 based on SRC680m199. Due to limited disk

[api-dev] Using the uno-skeletonmaker to generate a Calc Addin

2007-01-24 Thread Cedric Bosdonnat
Hi Juergen, all, Is there a place describing how to configure the functions descriptions, display name and their different locale values for use with the uno-skeletonmaker ? I saw that I could use the -n and -t options to define the Addin implementation and IDL service, but is there any way to

Re: [api-dev] soffice.bin keeping socket locked in java application?

2007-01-24 Thread Jörg Budischewski
Hi, When the officebean is started in one of these programs and then the application is closed, how do you do this closing ? Do you call System.exit() ? You need to call System.exit(), as the office creates non-demon Threads for interprocess communication. What is your platform ? The

[api-dev] About functions in different modules

2007-01-24 Thread Johnny Andersson
Hi! I am probably doing things the very wrong way again, as usual. I have a spreadsheet on which I put three buttons to call thrre different macros, which runs a couple of subroutines and functions. I want to write each macro in different modules and I want them all to follow the document,

Re: [api-dev] soffice.bin keeping socket locked in java application?

2007-01-24 Thread Mathias Bauer
news.gmane.org wrote: Hello, I have a complex java application using the officebean. Almost everything works fine, but I have a problem: my application is made up of several separated java programs which are launched separately using: Runtime.getRuntime().exec(ExecString); One of

Re: [api-dev] Dialogs: OK button can't call macros?

2007-01-24 Thread Johnny Andersson
Hi again... 2007/1/24, Malte Timmermann [EMAIL PROTECTED]: This will return 0 for Cancel, something else (1) for OK. So if execute() doesn't return 0, do your stuff. One thing comes to my mind then: When dlg.execute() is finished (user clicked OK or Cancel), I can do my stuff, which is to

Re: [api-dev] Dialogs: OK button can't call macros?

2007-01-24 Thread Andrew Douglas Pitonyak
Johnny Andersson wrote: Hi again... 2007/1/24, Malte Timmermann [EMAIL PROTECTED]: This will return 0 for Cancel, something else (1) for OK. So if execute() doesn't return 0, do your stuff. One thing comes to my mind then: When dlg.execute() is finished (user clicked OK or Cancel), I