now this is weird...

Code:
dim $string[10000000]
? ubound($string)
$string = join($string,'.')
? @error @serror
? len($string)



taht will create a 10000000 len string, after running a LONG time...

chance that dim to 20000000 and the script just ends... no error...

change that dim to 40000000, and you get error 87 "The parameter is incorrect." from the Join() command.

weird....