Hi Joan,

> I managed to put openoffice.org into an applet, but sometimes when I
> close the applet there's this soffice.bin process still alive. Is it
> normal? Is there a way to clear the memory, kill it, etc. through the
> api?

If you want to close OOo completely, you should terminate it:

-----%<-----
public void terminate(XDesktop xDesktop) {
        // Close whole OpenOffice
        if(xDesktop != null)
        {
            xDesktop.terminate();
        }
}
-----%<-----

Greetings, Tobias

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to