I've created my controls in my window in the WM_CREATE message like this:
case WM_CREATE:
{
CreateWindowA("button", "Refresh Listview",
BS_MULTILINE | WS_CHILD | WS_VISIBLE, 10, 10, 70, 50,
hwnd, (HMENU)IDC_REFRESHLW, g_hInst, NULL);
break;
}
When I press tab it does nothing, do i have to initialize it somehow?
I noticed if I use a dialog, it already automatically has tabbing initialized and the tab order is the order in which you create the controls in the .rc file.
But i don't want a dialog!
thanks