Tab Order
C / C++ / MFC
4
Posts
3
Posters
0
Views
1
Watching
-
I created some edit controls on a dialog box at run time. How to set tab order for those controls?
using SetWindowPos API.
-
I created some edit controls on a dialog box at run time. How to set tab order for those controls?
By default the tab order is set in the order of creation of the controls. To change this you can use
SetWindowPos
by specifying thehWndInsertAfter
parameter.«_Superman_»
I love work. It gives me something to do between weekends. -
using SetWindowPos API.