Custom Query (3922 matches)
Results (103 - 105 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #325 | Fixed | Radio menu items not firing events | ||
| Description |
Exactly as the title implies, radio menu items do not fire events. It seems the regression occurred somewhere between v3.2.11.5 and v3.2.11.9 (the in-between builds didn't display any context menus at all). GUICreate(@AutoItVersion)
$menu = GUICtrlCreateContextMenu()
$item = GUICtrlCreateMenuItem("Click Me!", $menu, -1, 1) ; won't fire event
;$item = GUICtrlCreateMenuItem("Click Me!", $menu) ; will fire event
GUISetState()
While 1
Switch GUIGetMsg()
Case -3
Exit
Case $item
MsgBox(0, "Clicked", "You clicked me!")
EndSwitch
WEnd
|
|||
| #327 | Fixed | SciTE/Tidy bug. False message: "endfunc" is closing previous "if" | ||
| Description |
There is a Tidy bug in _ITE function: Error -> "endfunc" is closing previous "if" but the function is running fine. Local $n1 = 1, $n2
$t = "Steps" & @TAB & "Variants" & @TAB & @TAB & @TAB & @TAB & "Steps" & @TAB & "Variants" & @TAB & @LF & @LF
For $i = 1 To 91
$n0 = $n1
$n1 += $n2
$n2 = $n0
$t &= $i & @TAB & StringFormat("%-20.0f", $n1) & _ITE(Mod($i, 2), @TAB & @TAB & _ITE($i < 54, @TAB, ""), @LF)
Next
MsgBox(0, "The steps enigma", $t)
Func _ITE($if, $then = 1, $else = 0)
If $if Then Return $then
Return $else
;### Tidy Error -> "endfunc" is closing previous "if"
EndFunc ;==>_ITE
|
|||
| #339 | Fixed | GUICtrlDelete() crashes at special occasions. | ||
| Description |
Getting hard crash with this code: GUICreate("",500,600)
$input = GUICtrlCreateInput("8", 10, 100 + 30, 200, 20)
$pic2 = GUICtrlCreatePic("", 0, 280, 450, 1)
GUISetState()
Do
$msg = GUIGetMsg()
Until $msg = -3
GUISetState(@SW_HIDE)
GUICtrlDelete($input)
GUICtrlDelete($pic2)
GUISetState(@SW_SHOW)
Sleep(1000)
Seems to only occur on vista machines. |
|||
Note:
See TracQuery
for help on using queries.
