Problem with modal dialog

  • Thread starter Thread starter user123
  • Start date Start date
U

user123

If I use a modal dialog in my app and switch to another Application
everything is ok. The second application is shown.
If I switch back to my app only the modal dialog is shown. Behind the modal
dialog I can see the second application.

Any help is appreciated.

Thanks
 
That's just the way it is....

Your application can't continue - even to redraw itself - while your
(application) modal dialog is displayed.

Modal dialogs nearly always bring trouble of one sort or another. If
possible, consider using a simple form instead of the modal dialog.
 
Back
Top