I am developing an application for Windows CE 6.0 in embedded Visual C++ 4.
I created a simple console application (WCE Application) with platform \"Pocket PC 2003\"
My C++ is very rusty, but you still have to initialize your controls.
CFffffDlg dlg = new CFffffDlg(); // << Initialize the dlg m_pMainWnd = &dlg; int nResponse = dlg.DoModal(); if (nResponse == IDOK)
Right? Is that all you need?