what will happen if i create a win32app without the following line?
Will my app still receive all the window messages?PHP Code:hAccelTable = LoadAccelerators(hInst, "MapCE");
// Main message loop:
while (GetMessage(&msg, NULL, 0, 0))
{
if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
return msg.wParam;
regards,




Reply With Quote