On Tue, 2005-03-29 at 19:12, Laurent Godard wrote:
> 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
> 
Neat trick! Thanks!

> > Is the non-modal dialog "dockable" like the Navigator?
> > 
> 
> Unfortunatally, i didn't manage to do it :(
> 
> Hope this helps
> 
> Laurent

Thanks too to Mathias and Carsten knowing that it is not yet possible
will save me time trying to do the impossible :-).

Thanks, Ian


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

Reply via email to