|
-
Nov 11th, 2002, 05:28 AM
#1
Thread Starter
PowerPoster
Tab stop
is there any special code or setting i need to do in order to make my application to support tab stop? (assume i start from a empty project)
-
Nov 11th, 2002, 09:05 AM
#2
Give your parent window the WS_EX_CONTROLPARENT extended style. Give the child windows you want selectable the WS_TABSTOP style.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Nov 12th, 2002, 12:47 AM
#3
Thread Starter
PowerPoster
That code will work fine if the parent window is created from CreateWindowEx. But how about if the main window just a dialouge? I guest i can't archieve the samethings
-
Nov 12th, 2002, 12:08 PM
#4
A dialog should have this style automatically...
If not you can set it afterwards using SetWindowLongPtr (or SetWindowLong on older SDKs).
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|