I have 18 text boxes named 'txtmybox' with indexes set as 0 to 17.
To change the back color I currently use a for..next loop ie:
for x = 0 to 17
txtmybox(x).backcolor=red
next x
The question is - is there a quicker way to perform this task, ie change all boxes in one go?
thanks