ENCRYPTION QUESTION
hey i need to know how to make somthing i want get printed as somthing else im trying to make a encryption. and i really need help.
You should google basic (not the language) encryption. It gets pretty complicated. You can try the shift method. B=A, C=B, D=C. each character is just shifted one to the right.
If you don't mind a simple cipher, you can use a string and for each character perform an ASC(), add or subtract to the number, and then CHR$(). This could, if you just shifted, by, say, 1, could turn 'hello' into 'ifmmp.' If you desire something more complicated, try creating your own ASC() and CHR$(), and create your own scrambled character set. If you want I can provide an example.