[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 at the same time. I would recommend that you create a single dialog with a ListView if you need to display many “events” to the user at the same time.

solved Is there a fast way to turn MessageBox into non modal dialog?