File->New Project->Visual C++->Win32.
Win32 Project.
"MyHotDemo"
Application Settings
Checkbox "Empty Project"
Right click "Source Files", Add->New Item. C++ File (.cpp)
"MyHotDemo.cpp"
#include <windows.h>
INT WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR lpCmdLine, INT nCmdShow)
{
//insert sensational Windows demo code here.
return 0;
}
Debug->Start Debugging
Easy! Er...
Jim