Right, probably sounds easy (probably is), but i basically designing a translator - secrect code hybrid thing.
what i have so far is the user types in a string using input, and that string is saved. then what i want to do is read each letter out of the string, and replace each letter which something else, say replace all the "a"s with "/"s or "b"s with "r", etc
I looked up the help files and found:
for t= 1 to len(message$)
print ASC(mid$(message$,t))," ";
but cant get it to work for me. any help would be greatly appreciated =)
dragontail