tabstop
C / C++ / MFC
5
Posts
3
Posters
0
Views
1
Watching
-
Hi all, How can i set the tabstop property of a control to FALSE from the code ? Thanx in advance, Desmo16.
ModifyStyle(WS_TABSTOP,0,0);
tanvon I Blog here my VC++ My all articles at codeproject here
-
Hi all, How can i set the tabstop property of a control to FALSE from the code ? Thanx in advance, Desmo16.
Hope I understood your question Did you see TabStop on property window of control
WhiteSky
-
ModifyStyle(WS_TABSTOP,0,0);
tanvon I Blog here my VC++ My all articles at codeproject here
-
ModifyStyle(0, WS_TABSTOP, 0); it is this easy
tanvon I Blog here my VC++ My all articles at codeproject here