> Maybe stringnotation helps? (not sure)
>
> var temp=forms.myform["2"];
> temp[0].disabled=true;
This works, but doesn't allow me to access the elements by their "name"
> And yes: Strange design to name your elements like that. :-/
It's a system that builds a form based on database information. The
primary key, which is a number, determines the name of the element.
This is also why the suggestion you made is not suitable - it works, but I
cannot guarantee the order of each element within the form
Cheers anyway!
Jon