Custom Query (3931 matches)
Results (298 - 300 of 3931)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3702 | Rejected | Make Execute capable of processing declarations | ||
| Description |
In some cases (not all completely obscure) it would be extremelly useful to be able to Execute a variable declaration. Think for instance when/if you have to declare an array having a number of dimensions variable across calls. With this feature, we can build the needed declaration string and Execute it, covering all cases with short code. Lacking this, the code needs painful branches for all possible number of dimensions, $a[$d1] and $a[$d1][$d2] and $a[$d1][$d2][$d3], a.s.o. |
|||
| #3701 | Fixed | Hard crash on declaring an array with more than 2^24 cells | ||
| Description |
All is told. The following hard crashes AutoIt: Local $a[9000000][2] AutoIt should instead exit with an error. |
|||
| #3699 | Fixed | _ArrayMin, _ArrayMinIndex, _ArrayMax, _ArrayMaxIndex: example scripts | ||
| Description |
$iEnd param should have -1 value instead of 0 in the last line of the example script related to these functions: _ArrayMin: MsgBox($MB_SYSTEMMODAL, 'Min Numeric value in column 2', _ArrayMin($aArray, 1, 0, -1, 2)) _ArrayMinIndex: MsgBox($MB_SYSTEMMODAL, 'Min Index Numeric value in column 2', _ArrayMinIndex($aArray, 1, 0, -1, 2)) _ArrayMax: MsgBox($MB_SYSTEMMODAL, 'Max Numeric value in column 2', _ArrayMax($aArray, 1, 0, -1, 2)) _ArrayMaxIndex: MsgBox($MB_SYSTEMMODAL, 'Min Index Numeric value in column 2', _ArrayMinIndex($aArray, 1, 0, -1, 2)) |
|||
