Ciao a tutti/e,
come faccio a leggere una stringa carattere per carattere?

esempio.

dim tmp as string
dim carattere as string
tmp = "Ciao Ciao"

For i = 1 To Len(tmp)
carattere= ???tmp??? 'mette nella variabile il carattere iesimo della stringa
msgbox carattere
next i
questo esempio dovrebbe fare uscire tante finestre di dialogo,
ognuna dovrebbe contenere un carattere della stringa tmp.

Grazie 1000!