﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3276	Getting/Setting DllStruct array-element with index stored in varible fails without using Execute	genius257	Jon	"The code below illustrates the problem
{{{
$tPoint = DllStructCreate(""INT A[5]"")
$tPoint.A(1) = 1
$tPoint.A(2) = 2
$tPoint.A(3) = 3
$tPoint.A(4) = 4
$tPoint.A(5) = 5
$i = 5
$tPoint.A($i) = 6;doesn't work

For $i=1 To 5
	ConsoleWrite(""[""&$i&""]""&($tPoint.A($i))&@CRLF);doesn't work
	ConsoleWrite(""[""&$i&""]""&Execute(""$tPoint.A(""&$i&"")"")&@CRLF);does work
Next
}}}
"	Bug	assigned		AutoIt		None			
