[Solved] Is there a fast way to turn MessageBox into non modal dialog?
MessageBox is a modal dialog, the function does not return until the dialog has been closed. Multiple MessageBoxs can only be created if you have multiple threads in your process. MessageBox is a special version of DialogBox. You can use CreateDialog to create modeless dialogs but you should not show many dialogs to the user … Read more