Quote Originally Posted by Mythos44
Thanks. Just wanted it to start at 1 not 0 but just have to add an extra elemlnt.
Don't ever add an extra element to arrays like that. As Rob suggests, arrays are zero-based and you should use them as such. There's never a need for a hack like that. It's all handled smoothly with properly written code.