Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (94 - 96 of 3870)

Ticket Resolution Summary Owner Reporter
#3855 No Bug _ArrayToString for 1D array, for used in the Combo Box anonymous
Description

Original from Include Array.au3 Func _ArrayToString(Const ByRef $aArray, $sDelim_Col = "|", $iStart_Row = -1, $iEnd_Row = -1, $sDelim_Row = @CRLF, $iStart_Col = -1, $iEnd_Col = -1)

If using for Combo Box with 1D Array,

$Array = [1,2,3,4,5] GUICtrlSetData($Combo1, _ArrayToString($Array))

MsgBox(0,"",_ArrayToString($Array))

the String result will be

1 2 3 4 5

instead of 1|2|3|4|5

But if exchange the Delimiter the result will be ok

Func _ArrayToString(Const ByRef $aArray, $sDelim_Row = "|", $iStart_Row = -1, $iEnd_Row = -1, $sDelim_Col = @CRLF, $iStart_Col = -1, $iEnd_Col = -1)

Thank You

#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.

Note: See TracQuery for help on using queries.