Movable Modal

A movable window DetailWindow is opened from the MainWindow (type document). We understand that the movable window DetailWindow first has to be closed before to return to the MainWindow. This is the traditional way a modal window works. However, although DetailWindow is active, we can still push buttons (e.g. resizebutton, closebutton, user defined buttons…) on the MainWindow. Is this normal? How can we avoid this?

How are you opening it? Are you using show or showModal?

We opened with show… Do we have to use ShowModal?

I don’t know that I’ve ever used show with a modal dialog, but I think that’s your problem…

Yes, you must use ShowModal. Show will not work.

Peter, Tim ShowModal works fine. Thank you for your help!