Problem about tab stop
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
Hi everyone: Can someone tell me how to enable/disable tab stop for a specified dialog control? Please don't tell me to set this in the property of the control, I need to do this through some codes. Thanks!
-
After posting the question for a while, I found the CWnd member function ModifyStyle() may realize this function by removing the WS_TABSTOP style from the specified control. Is that right?
;)yes..... use the ModifyStyle() function... if the optionis initially there..... then write it as ..... ModifyStyle(WS_TABSTOP ,0); dont see y it shouldnt work..... try it..... happy programmin..... cheerz..... :-D