[api-dev] UNSANSWERED: a non-modal dialog

2006-10-11 Thread Nicolai Stange
Hi, in reply to Jurgen and Andreas ([EMAIL PROTECTED] REQUEST: unanswered questions). This hasn't been answered yet. Nicolai -- Weitergeleitete Nachricht -- Subject: [api-dev] Making of a non-modal dialog Date: Samstag 07 Oktober 2006 17:23 From: Nicolai Stange [EMAIL

Re: [api-dev] UNSANSWERED: a non-modal dialog

2006-10-11 Thread Berend Cornelius
Hi Nocolai, you may also just set the window of your dialog visible. xDialog = xMultiServiceFactory.createInstance(com.sun.star.awt.UnoControlDialog); xWindow = (XWindow) UnoRuntime.queryInterface(XWindow.class, xDialog); xWindow.setVisible(true); After that you have to capture your programm

Re: [api-dev] UNSANSWERED: a non-modal dialog

2006-10-11 Thread Mathias Bauer
Berend Cornelius wrote: Hi Nocolai, you may also just set the window of your dialog visible. xDialog = xMultiServiceFactory.createInstance(com.sun.star.awt.UnoControlDialog); xWindow = (XWindow) UnoRuntime.queryInterface(XWindow.class, xDialog); xWindow.setVisible(true); After that you