Vladimir
Vladimir

Reputation: 211

Is there any way to have ASYNC MessageBox?

Or do I have to use threads? (C++)

Upvotes: 9

Views: 2990

Answers (2)

Michael Baldry
Michael Baldry

Reputation: 2028

Message boxes are modal dialogs. The whole idea is that they aren't asynchronous. Assuming it was possible to do this (which it is, given the right amount of tinkering), would you want to confuse users with something that looks familiar but acts in a different way to what they expect? The question is, why do you want to do this? maybe there is a better solution.

Upvotes: 2

ChrisW
ChrisW

Reputation: 56123

No there isn't. Alternatively, you can create a "modeless dialog box".

Upvotes: 7

Related Questions