#53 closed Feature Request (Rejected)
change taborder of controls in GUI
Reported by: | hazed | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | Severity: | ||
Keywords: | gui tabcontrol | Cc: |
Description
The order tabstops on a GUI is the order that the control was created. But I would like a way to fill in a form and change where the next control has focus based upon that the data. That way I can skip non-essential portions of a generic form.
Attachments (0)
Change History (5)
comment:1 follow-up: ↓ 2 Changed 17 years ago by Gary
- Resolution set to rejected
- Status changed from new to closed
comment:2 in reply to: ↑ 1 ; follow-up: ↓ 3 Changed 17 years ago by anonymous
Replying to Gary:
see _WinAPI_SetWindowPos in the help
I don't get it, this seems to talk about multiple windows, not objects within the windows. I have one Window, with many input boxes, the order of the input boxes, is relative to the data that is retrieved from a website and what input is typed/scanned into the input boxes.
Are input boxes, radio controls, just child windows?
comment:3 in reply to: ↑ 2 ; follow-up: ↓ 4 Changed 17 years ago by Saunders <admin@…>
Replying to anonymous:
Are input boxes, radio controls, just child windows?
You betcha. You can even get the handle of a control (using ControlGetHandle) then pass that to functions like WinGetPos and it works just fine.
comment:4 in reply to: ↑ 3 Changed 17 years ago by anonymous
Replying to Saunders <admin@therks.com>:
Replying to anonymous:
Are input boxes, radio controls, just child windows?
You betcha. You can even get the handle of a control (using ControlGetHandle) then pass that to functions like WinGetPos and it works just fine.
Thanks, That helps alot :)
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
see _WinAPI_SetWindowPos in the help