Can't type in edit control
The input focus seems to have got lost somewhere.
Set it to the edit like this
1 2 3
|
CreateWindowEx (WS_EX_CLIENTEDGE, "edit", "", WS_MULTI_LINE_EDIT, 0, 0, 150, 300, hWnd, (HMENU) PS2DIS_HEX_FIXER_INPUT, hInstance, NULL);
SetFocus(GetDlgItem(hWnd,PS2DIS_HEX_FIXER_INPUT)); //Add this line here
|
Thank you, it worked great!
Topic archived. No new replies allowed.