Custom Query
Results (133 - 135 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3713 | Fixed | _GUICtrlRichEdit_SetEventMask - $ENM_NONE not declared in RichEditConstants.au3 | Jpm | Bitnugger |
Description |
_GUICtrlRichEdit_SetEventMask ($hWnd, $iEventMask) For $iEventMask, the AutoIt-Help also states $ENM_NONE, but this constant is undeclared in RichEditConstants.au3. _GUICtrlRichEdit_SetEventMask ($hWnd, $ENM_NONE) ; warning: $ENM_NONE: possibly used before declaration. |
|||
#3096 | No Bug | Confusing error message when initializing default argument with undeclared variable | Bo-Cheng Jhan | |
Description |
On this example: ; Begin of test.au3 test(1) Func test($x, $y = $z) ; $z is not declared. EndFunc ; End of test.au3 This script causes the following error: test(1) test(1) ERROR Error: Variable used without being declared. However, it is no "variable" found in this line. The actual problem is in $z, so the following error message will be more readable: Func test($x, $y = $z) Func test($x, $y = ERROR Error: Variable used without being declared. |
|||
#12 | Rejected | GuiCtrlSetData() not appending a single value if it already exists | Jpm | Bowmore |
Description |
This script demonstrates a bug in repeated calls to GUICtrlSetData() to add a single value to a list where that value already exists in the list. The value is not appended to the list unless there is a pipe character after the value. #include <GUIConstants.au3> GUICreate("My GUI") ; will create a dialog box that when displayed is centered $mylist1 = GUICtrlCreatelist ("", 10,10) GUICtrlSetData($mylist1, "test") GUICtrlSetData($mylist1, "test") ; only one entry apeers in list $mylist2 = GUICtrlCreatelist ("", 10,200) GUICtrlSetData($mylist2, "test") GUICtrlSetData($mylist2, "test|") ; two entries apeer in list GUISetState () ; will display an empty dialog box with a control with focus on ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend |