#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)
follow-up: 2 comment:1 by , 18 years ago
| Resolution: | → rejected |
|---|---|
| Status: | new → closed |
follow-up: 3 comment:2 by , 18 years ago
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?
follow-up: 4 comment:3 by , 18 years ago
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 by , 18 years ago
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 :)

see _WinAPI_SetWindowPos in the help