Search the Community
Showing results for tags '_arrayinsert'.
-
Greetings, I seem to be having a problem trying to insert values into an array in excess of the size of the array (its Ubound value). I thought the command would simply 'ReDim' the array in order to add another value...however that does not seem to be happening. My code is as below:...
-
I need add record on last element of array When I try add item in the last element of array, nothing happend #include <Array.au3> Local $avArray[10] $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = "Jeremy" $avArray[5] = "Val...