Subscript out of range

when i want to take value from column of a view i only can take values until column number 9.After that if i retrieve value from column number 10,it prompt error message SUBSCRIPT OUT OF RANGE. Some please help me,its urgent

Subject: subscript out of range

The ColumnValues array starts on index 0, not 1.Are you sure you aren’t trying to access a column that is beyond the number of columns?

Subject: RE: subscript out of range

Yes i know it start with (0), i have column until (12). But when i try to access column (10) it says that subscript out of range when i run the form.

Subject: subscript out of range

Do you have more than 10 columns in your view? Don’t forget that the first column is columnvalues(0). Try using a forall as the example in the help shows and see what comes up.

Dan