> Anyone could let me know why when I try to add a new > Item in one ArrayList defined inside a ActionForm, it > throws IndexOutOfBound?
I'd guess it's because you used ArrayList.add(int, Object). That form of "add" assumes that the element of the ArrayList specified by the int argument already exists. If it doesn't, you get IndexOutOfBound. If you want to add a new element to the list, use ArrayList.add(Object). That will add the Object to a new element at the end of the list. -- Tim Slattery [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]