The idea is to have many MessageBox() calls, each within their own thread.
The catch is, each thread has to be dynamically created.
At first, being a noob, I tried this:
void Go[10](void)
{
MessageBox(NULL, _T("..."), _T("..."), MB_OK);
}
..........
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Go[i], NULL, NULL, NULL);
That, obviously, didn't work.
Any other suggestions out there? :icon_cheesygrin: