Although this is double posting, i have waited a long time for a reply on the other topic and there was none, so i think this is in the right.
Is there a way to position a messagebox window with C++, using the pixel coordinates? if so could someone please add it to the beneath code?
#include <windows.h>
const char Caption[] = "Simple Error Box";
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MessageBox( NULL,
"Simple.\n"
"Error.\n"
"Box.",
Caption,
MB_OK | MB_ICONERROR);
return 0;
}