Right, I couldn't use what you put directly, because to be frank, I'm not very good at understanding what other people have put (no offence, it happens all the time) but I used your code and it works!
The only problem I have now is I want my value for the textbox conversion to be stored permenantly.
However, as I don't understand most of your code there, I don't know if any of it does in fact store the string I'm using.
Here's what I've got so far, please could someone tell me what I would need to add to store it, and what to use to recall it for verification.
Code:
Public Sub CommandButton3_Click()
Dim crypt As Variant
Dim L As Integer
Dim tpp As String
L = Len(TextBox1)
crypt = TextBox1.Text
Dim i As Integer
For i = 1 To L
tpp = tpp & (Asc(Mid(crypt, i, L)))
Next
End Sub
So I want Textbox1 to be able to be cleared without losing "tpp" and for "tpp" to be able to be recalled in another command.
Thanks in advance, and many thanks to Malik641 for being a big help with this so far.
Edit: Would it be possible to export my resulting string (tpp) into a module and recall it from there? Just a wild though..