Hi Ian


I would really like to know how you created a non-modal dialog. Is it possible to see the code?


It is tricky ...

Basically
set the dialog visible property to true
set listeners
set a boolean global variable endDialog
loop infinetely

gobal stopMe
sub start
   stopMe=false
   'LoadMydialog
   mydialog.visible = true
   while not stopMe
      wait 20 'avoid 100% cpu load
   wend
   mydialog.visible = false     
end sub

sub button_stop
  stopMe = true
end sub

Is the non-modal dialog "dockable" like the Navigator?


Unfortunatally, i didn't manage to do it :(

Hope this helps

Laurent
--
Laurent Godard <[EMAIL PROTECTED]> - Ing�nierie OpenOffice.org
Indesko >> http://www.indesko.com
Nuxeo CPS >> http://www.nuxeo.com - http://www.cps-project.org
Livre "Programmation OpenOffice.org", Eyrolles 2004


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



Reply via email to