if you try to use "redim preserve" to trim an array down to 0 length, you get an array out of bounds error.
code:
dim $array[10]
redim preserve $array[ubound($array)+10]
? ubound($array)
;this line wll cause kix32 4.11 beta to to error out.
redim preserve $array[0]
? ubound($array)
This is not a problem in 4.10
Bryce