﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3855	_ArrayToString for 1D array, for used in the Combo Box	anonymous		"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"	Bug	closed		AutoIt	3.3.14.5	None	No Bug		
