|
-
Mar 6th, 2002, 11:08 AM
#1
Thread Starter
Addicted Member
Tab Order
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?
Always looking for a better and faster way!
-
Mar 6th, 2002, 01:57 PM
#2
The SetWindowPos function can change the Z order of windows. I don't know if this changes the tab order too.
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.
-
Mar 6th, 2002, 04:48 PM
#3
Thread Starter
Addicted Member
SetWindowPos(hCtl, GetDlgItem(hwnd, IDSAVE), 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
Works! Thank You
Always looking for a better and faster way!
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
|