I want make program...open up, it show dialog box, then close? Do nothing but show dialog. How Daler do that?
Printable View
I want make program...open up, it show dialog box, then close? Do nothing but show dialog. How Daler do that?
Code:#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Hello", "test", MB_OK);
return 0;
}
Thank very much!