Thanks! I had the same problem and the solution of VictorN worked for me:
I simply added:
MESSAGE_HANDLER(WM_GETDLGCODE, OnGetDlgCode)
and
LRESULT OnGetDlgCode( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled )
{
return DLGC_WANTALLKEYS;
}
| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | VB Forums | Developer.com |
|
Results 1 to 5 of 5
Threaded View
|
Click Here to Expand Forum to Full Width |