![]() |
Autohotkey build for CE devices |
| Check |
Check: Turns on (checks) a radio button or
checkbox. |
_controlFunctions() |
| Enable disable |
Enable: Enables a control if it was
previously disabled. |
_controlFunctions() |
| Show Hide |
Enable: Enables a control if it was
previously disabled. |
_controlFunctions() |
| Style |
WS_BORDER, WS_POPUP, WS_CAPTION, WS_DISABLED, WS_DLGFRAME, WS_GROUP, WS_HSCROLL, WS_MAXIMIZE, WS_MAXIMIZEBOX, WS_MINIMIZE, WS_MINIMIZEBOX, WS_OVERLAPPED, WS_OVERLAPPEDWINDOW, WS_POPUPWINDOW, WS_SIZEBOX, WS_SYSMENU, WS_THICKFRAME, WS_VSCROLL, WS_VISIBLE, WS_CHILD | _controlFunctions() |
| TextStyle, EditStyle..... |
to test |
|
| ShowDropDown | Drops a ComboBox so that its choices become visible. | _controlFunctions() |
| HideDropDown | Reverses the above. | _controlFunctions() |
| TabLeft, TabRight | Moves left or right by one or more tabs in a SysTabControl32. Count is assumed to be 1 if omitted or blank. | _controlFunctions() |
| Add String |
Adds String as a new entry at the bottom of a ListBox, ComboBox (and possibly other types). | _controlFunctions() |
| Delete, N | Deletes the Nth entry from a ListBox or ComboBox. N should be 1 for the first entry, 2 for the second, etc. | _controlFunctions() |
| Choose, N | Sets the selection in a ListBox or ComboBox to be the Nth entry. N should be 1 for the first entry, 2 for the second, etc. | _controlFunctions() |
| ChooseString, String |
Sets the selection (choice) in a ListBox or ComboBox to be the first entry whose leading part matches String. The search is not case sensitive. For example, if a ListBox/ComboBox contains the item "UNIX Text", specifying the word unix (lowercase) would be enough to select it. |
_controlFunctions() |
| EditPaste, String |
Pastes String at the caret/insert position in an Edit control (this does not affect the contents of the clipboard). |
_controlFunctions() |