Custom Query
Results (109 - 111 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3854 | Wont Fix | Setting Control Color has unintended consequences in GUI | paul.keselman@… | |
Description |
Uncommenting GUICtrlSetColor creates a bug where interacting with the input, also causes the button function to be executed #include <GUIConstantsEx.au3> $hGUI = GUICreate("Test", 200, 100) $hButton = GUICtrlCreateButton("Button", 10, 10, 160, 24) ;GUICtrlSetColor($hButton, 0xFF0000) $hInput = GUICtrlCreateInput("", 10, 40, 60, 24) GUISetState() While 1 Switch GUIGetMsg() Case $hButton ConsoleWrite("Button" & @CR) Case $hInput ConsoleWrite("Input" & @CR) Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd |
|||
#3853 | Fixed | ArrayDisplayInternals.au3 - 6x ConsoleWrite() | Zedna | |
Description |
In (3.3.15.4) ArrayDisplayInternals.au3 there are 6x ConsoleWrite() which shouldn't be there. Note: In 3.3.15.3 it was OK, so this is new bug. |
|||
#3852 | Fixed | _ArrayToString -> speed optimization | Jpm | Zedna |
Description |
StringLen($sDelim_Col) is called for each row but it should be called only once before For/Next loop. original part of code: For $i = $iStart_Row To $iEnd_Row For $j = $iStart_Col To $iEnd_Col $sRet &= $aArray[$i][$j] & $sDelim_Col Next $sRet = StringTrimRight($sRet, StringLen($sDelim_Col)) & $sDelim_Row Next Return StringTrimRight($sRet, StringLen($sDelim_Row)) optimized part of code: $iDelimColLen = StringLen($sDelim_Col) For $i = $iStart_Row To $iEnd_Row For $j = $iStart_Col To $iEnd_Col $sRet &= $aArray[$i][$j] & $sDelim_Col Next $sRet = StringTrimRight($sRet, $iDelimColLen) & $sDelim_Row Next Return StringTrimRight($sRet, StringLen($sDelim_Row)) |
Note: See TracQuery
for help on using queries.