02-06-2012 12:36 PM
I have a modal window (it has to be modal) on which I would like to open another window (that is not modal). Is this possible?
02-06-2012 02:46 PM
No. The whole point of a modal window is that it is on top of everything else and blocks access to everything else.
Why does the window need to be modal? Would a floating window that's always on top work?
Mike...
02-07-2012 02:03 AM
Yes, a floating window that is always top would work. But previous windows shouldn't be accessible. How can I make a floating window always on top?
02-07-2012 02:10 AM
No you are confusing, the main advantage of using the Floating window is that it will allow the other windows also accessible at the same time the floating window can also be accessed. Normally if you launch a window that is continuously running in a while will not allow the previous windows access.
02-07-2012 02:17 AM
Ok. I have three windows (window1, window2 and window3). Window1 calls window2 and window2 calls window3. When window2 is open window1 mustn't be accessible and when window3 is open window2 must be accessible. How can I achieve that?
02-07-2012 02:20 AM
Just make it as Dialog window then it will not let the previous window accessible.
02-07-2012 02:27 AM
Try this settings.
02-07-2012 02:37 AM
With these settings set window1 is accessible when window2 is open?
02-07-2012 03:09 AM
No it you will not be able to access window1 if window2 is open
02-07-2012 06:26 AM