Hello,
I have written a simple application, in which WinMain contains single line
only:
return DialogBox (0, MAKEINTRESOURCE (IDD_DIALOG), NULL, DlgProc) ;
All messages are processed by DlgProc.
Q: Can I process WM_CHAR messages just like in ordinary window? I know that
I should insert TranslateMessag e() in the message loop, but I do not have
direct access to it.
--
Gutek
I have written a simple application, in which WinMain contains single line
only:
return DialogBox (0, MAKEINTRESOURCE (IDD_DIALOG), NULL, DlgProc) ;
All messages are processed by DlgProc.
Q: Can I process WM_CHAR messages just like in ordinary window? I know that
I should insert TranslateMessag e() in the message loop, but I do not have
direct access to it.
--
Gutek
Comment