Custom Query
Results (49 - 51 of 3833)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1898 | Wont Fix | $CmdLineRaw, not enforced as constant. | mvg | |
Description |
$CmdLineRaw, is not enforced as constant. ref: topic: $CmdLine is now a constant? (2005) msg: http://www.autoitscript.com/forum/topic/10400-cmdline-is-now-a-constant/page__view__findpost__p__72486
|
|||
#3574 | Completed | $ES_PASSWORD limits input length to control width, Add note about using $ES_AUTOHSCROLL to Help File | Jpm | mikeolson27@… |
Description |
When setting an input box with the $ES_PASSWORD style, it no longer accepts characters after it has exceeded the width of the box. You need to use $ES_AUTOHSCROLL + $ES_PASSWORD to allow a long password to be used. Would be great if in the help file for GUICtrlCreateInput where it says to use that for passwords, it would actually say to use both styles Instead of the current: For defining an input control for entering passwords (input is hidden with an asterisk) use the $ES_PASSWORD style. Should be: For defining an input control for entering passwords (input is hidden with an asterisk) use the $ES_AUTOHSCROLL + $ES_PASSWORD styles. |
|||
#1824 | Works For Me | $GUI_BKCOLOR_TRANSPARENT not working in GUICtrlCreateCheckbox | avechuche | |
Description |
I have a problem or bug (?). I have a GUI with a background image, and need a transparent checkbox, but the "special flag" GUICtrlCreateCheckbox, not working. my au3 line is: ... GUICtrlCreatePic("picture.jpg", 0, 0, @DesktopWidth, @DesktopHeight) GUICtrlSetState(-1, $GUI_DISABLE) ... GUICtrlCreateCheckbox("xxxx", 10, (@DesktopHeight - 100), -1, 20) GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) ... In "Autoit Help" say this in GUICtrlSetBkColor section "The special flag $GUI_BKCOLOR_TRANSPARENT can be used with the Label, Group, Radio, Checkbox to apply to them a transparent background color". My solution? GUICtrlCreateCheckbox("", 10, (@DesktopHeight -100), 13, 13) GUICtrlCreateLabel("", 30, (@DesktopHeight - 100), 122, 13) GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) But is very irritating i have many checkbox :( |