Hi, i have a string of 150 characters
I need to process each character 1 by 1..
And *ONLY* the 150 from the string..
so if there are 151 in the string.. then DON'T process any above 150

i need to process each character 1 by 1.. so its like
the character can be A-Z, 1-9, or any character that is like ®©žó.. ETC.

and i need to see what character it is on so far..
so if i is on character 15, then some variable will
= 15..
that way i can use it in other ways.

Code:
dim ProChar as <What ever it needs to>
prochar = first character
if prochar= "a" then
'do stuff'
end if

prochar = second character
if prochar= "a" then
'do stuff'
end if
Thanks.. ALOT