I've been working on a WinAPI Project for university and we are asked to implement the full program in a dialog box. At first, I used a modal dialog box and everything worked fine, except that there was no icon in the taskbar for the dialog box because I created it directly on WM_CREATE and didn't make the main window visible anyway, since it isn't used.
Now I dumped the main window handle altogether and only used CreateDialog
to create a modeless dialog, but since then I can't use the Enter key as an alternative to my default push button.
case WM_COMMAND:
if(LOWORD(wparam) == IDOK || LOWORD(wparam) == IDC_OK) {
[...] //doing stuff
}
break;
and this is my full main function:
int WINAPI WinMain(HINSTANCE dieseInstanz, HINSTANCE vorherigeInstanz, LPSTR lpszArgument, int Fensterstil) {
MSG Meldung;
HWND dialog = NULL;
dialog = CreateDialog(GetModuleHandle(NULL),MAKEINTRESOURCE(IDC_DIALOG), NULL, dialogHandler);
if(dialog != NULL) {
ShowWindow(dialog, SW_SHOW);
} else {
MessageBox(NULL, "CreateDialog returned NULL", "Warning!", MB_OK | MB_ICONINFORMATION);
}
while(GetMessage(&Meldung, NULL, 0, 0)) {
TranslateMessage(&Meldung);
DispatchMessage(&Meldung);
}
return Meldung.wParam;
}
Did I just do some basic thing wrong or doesn't it work in general in the way I want to do it?
To clarify: If I press the Enter key in my dialog box, I'm only getting the typical Windows notification sound.
Your message loop needs to include a call to
IsDialogMessage()
:Per Using Dialog Boxes: Creating a Modeless Dialog Box:
This is also stated in the
CreateDialog()
documentation:So, change your message loop to look more like this instead: