"Modal" interfaces (DISPLAY vs. DISPLAY-DIALOG)
Hi! In an application I'm working on I have several interfaces that can be stacked upon each other and are supposed to be "modal" in the sense that if interface B is displayed as an effect of something that's done in interface A then one should not be able to do something in A (or any other displayed interface) until B is closed. At the moment this is achieved by using CAPI:DISPLAY-DIALOG instead of CAPI:DISPLAY. The downside of this approach is that the interfaces can't be resized by the user if they are displayed as dialogs but I'd like to enable the user to do this. Is there a way to have my cake and eat it, too? Like somehow making the interfaces "modal" without using CAPI:DISPLAY-DIALOG? Thanks, Edi.