views:

49

answers:

2

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

+2  A: 

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

ChrisW
+2  A: 

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.

clocKwize