I want to show multiple windows at once.
for(int i=0; i < 5; i++)
{
Sleep(10);
MessageBox(NULL, "Some information", NULL, MB_OK);
}
It's showing them one after another, but I want to show them all at one time
(Sorry for my English)
Thanks!