VERY EASY ENCRYPTION AND DECRYPT
VERY EASY ENCRYPTION AND DECRYPTION CODE. VERY VERY VERY SIMPLE FOR
Rate VERY EASY ENCRYPTION AND DECRYPT
(2(2 Vote))
Private Sub txtText_KeyPress(KeyAscii As Integer)
Dim Text
Text = Chr(KeyAscii + 10)
txtEncrypt.Text = txtEncrypt & Text
End Sub
'To Decrypt Use The Following(Put The Encrypted Text In Where You Are To Type, Then Add This Code Instead Of Code Above:
Private Sub txtText_KeyPress(KeyAscii As Integer)
Dim Text
Text = Chr(KeyAscii - 10)
txtEncrypt.Text = txtEncrypt & Text
End Sub
VERY EASY ENCRYPTION AND DECRYPT Comments
No comments yet — be the first to post one!
Post a Comment