id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 2824,_ArrayExtract bugged + solution,Quirinus,,"The problem is the same as here, but with _ArrayExtract instead: http://www.autoitscript.com/forum/topic/163244-arraytostring-bugged/ {{{ $height = 10 $width = 6 Local $aArray[$width][$height] For $i = 0 To $width-1 For $j = 0 To $height-1 $aArray[$i][$j] = ""("" & $i & "","" & $j & "")"" Next Next _ArrayDisplay($aArray, ""Original"") $column = 0 _ArrayDisplay(_ArrayExtract($aArray, 0, $width-1, $column, $column), ""Extracted"") }}} Seems like Melba23 found the solution in that thread. He didn't post it, but I think it's just removing this line: {{{ If $iEnd_Col = 0 Then $iEnd_Col = $iDim_2 }}} from Array.au3 UDF file in the _ArrayExtract function under Case 2 (for me that's the line 951). I'm not sure if this messes up something else, though, so it should be tested and carefully thought about. Also, the documentation is wrong. The whole Return Values and Remarks section for this function are suspect (someone probably copy-pasted from another function then forgot to change). The return value on success is actually the extracted array, not 1. Thank you.",Bug,closed,,Standard UDFs,3.3.12.0,None,Fixed,"UDF, Array, _ArrayExtract, Bug, Solution",