Quote: Originally Posted by
SFiorito 
don't forget that VB6 array indexes start at 1 unless you override it (can't remember how that's done, haven't used VB6 in.....7 years?)
They actually start at 0 unless otherwise specified.
eg
dim array()
array=split(string,",")
array(0) will contain the string content before the first ,
array(1) the next and so forth