﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1338	_arrayDisplay() GUI position error	Bowmore	Jpm	"The _arrayDisplay() function calculates a very poor GUI location when displaying large arrays. 
'''Bug Report Environment'''
AutoIt:3.3.1.6   (Os:WIN_XP/X86/Service Pack 3   Language:0409 Keyboard:00000809 Cpu:X64)

When diplaying arrays with long rows and many columns of data, using _arrayDisplay(), the GUI X position is calculated as a large negative value that positions the GUI off the visible screen. To see the displayed array you have to right clisk on the taskbar button and select maximize which fits the GUI to the monitor display
{{{
#include <array.au3>
#include <string.au3>

Global $g_aTestArray[5][240]

AdlibRegister(""_DisplayWindowSize"", 1000)

_PopulateArray($g_aTestArray)

_ArrayDisplay($g_aTestArray, ""Display Array With Longish Rows"")

Exit

Func _PopulateArray(ByRef $aTestArray)
  Local $fPopulate = True

  ;Generate some data for the array
  For $i = 0 To 4
    For $j = 0 To 239
      $fPopulate = Random(0, 1, 1)
      If $fPopulate Then
        $aTestArray[$i][$j] = _StringRepeat(Chr(Random(48, 90, 1)), Random(10, 40, 1))
      EndIf
    Next
  Next
EndFunc   ;==>_PopulateArray

Func _DisplayWindowSize()
  Local $aPos = 0

  $aPos = WinGetPos(""Display Array With Longish Rows"")
  If Not @error Then
    AdlibUnRegister(""_DisplayWindowSize"")
    MsgBox(0, ""_ArrayDisplay Window Size"", ""X = "" & $aPos[0] & @CRLF & ""Y = "" & $aPos[1] & @CRLF & ""W = "" & $aPos[2] & @CRLF & ""H = "" & $aPos[3] & @CRLF)
  EndIf
EndFunc   ;==>_DisplayWindowSize
}}}"	Bug	closed	3.3.3.0	Standard UDFs	3.3.1.6	None	Fixed	arrayDisplay	
