Modal forms get in the way of processing

Posted by Botax on Stack Overflow See other posts from Stack Overflow or by Botax
Published on 2010-05-12T22:48:24Z Indexed on 2010/05/12 22:54 UTC
Read the original article Hit count: 138

Filed under:
|
|
|

I’m working on an interface in VB6 to interact with a sound editor to automate certain tasks mainly using the editor’s object handles and activating them through SendMessage/PostMessage. In general it works OK, except that the editor has some dialog boxes that open in modal mode and freeze everything on the interface, including the timers.

Is there a practical way to get these dialog boxes to open modeless or to interact with them from the interface after they pop up? I tried an MDI form, but it also freezes along with everything else. The only way to override the modal mode of these boxes is to launch an independent applet beforehand to address the dialog boxes with a timer, but the process is somewhat cumbersome.

All I need to do with the dialog boxes is click the OK button or hit the return key.

© Stack Overflow or respective owner

Related posts about vb6

Related posts about modal