Hi All,

I think it would be good to be able to have arrays automically resize if you use certain additional functions. Such functions could be

PUSH - push a variable onto the end of an array
POP - pop the last variable off the end of an array

You could even have an optional parameter to indicate you want it to PUSH/POP from the front of the array?

Perhaps you could just use something like

Code:
 $Array[Ubound($Array)+1] = $Var  



although I think the PUSH/POP methodology would probably be better.

Cheers,

Richard