I have created several controls (CreateWindowEx) on a form
using the WS_TABSTOP style. While using the form, other
controls are created after the original controls. I want to changethe tab order of these controls. Any ideas?
Printable View
I have created several controls (CreateWindowEx) on a form
using the WS_TABSTOP style. While using the form, other
controls are created after the original controls. I want to changethe tab order of these controls. Any ideas?
The SetWindowPos function can change the Z order of windows. I don't know if this changes the tab order too.
SetWindowPos(hCtl, GetDlgItem(hwnd, IDSAVE), 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
Works! Thank You