auto closing messagebox
-
#include int main () { MessageBox(NULL, "Please do not press okay, just wait.", "Beginning", MB_EXCLAMATION); return 0; } I would like to make this message box close on its own in 5 seconds.
-
#include int main () { MessageBox(NULL, "Please do not press okay, just wait.", "Beginning", MB_EXCLAMATION); return 0; } I would like to make this message box close on its own in 5 seconds.
Auto-close message box[^] article may help. :)
Navaneeth How to use google | Ask smart questions
-
#include int main () { MessageBox(NULL, "Please do not press okay, just wait.", "Beginning", MB_EXCLAMATION); return 0; } I would like to make this message box close on its own in 5 seconds.
Why do you need such a message box? Are you needing to show some kind of a progress?
It is a crappy thing, but it's life -^ Carlo Pallini
-
#include int main () { MessageBox(NULL, "Please do not press okay, just wait.", "Beginning", MB_EXCLAMATION); return 0; } I would like to make this message box close on its own in 5 seconds.
See This. MessageBoxTimeout API[^]