Hi,

I have 45 text boxes on my form, I want to check each text box for all the alphabets. So I decided to make a loop in this way

n=1
do until n=45
If textn.text = "A" then
condition
end if
n=n+1
loop
but the problem is how the n of textn.text should b assigned value of n.

plz help

Thanking you,


arv1980