VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



VERY EASY ENCRYPTION AND DECRYPT

by Adam Dean (3 Submissions)
Category: Encryption
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Originally Published: Sun 2nd March 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

VERY EASY ENCRYPTION AND DECRYPTION CODE. VERY VERY VERY SIMPLE FOR

Rate VERY EASY ENCRYPTION AND DECRYPT




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


Download this snippet    Add to My Saved Code

VERY EASY ENCRYPTION AND DECRYPT Comments

No comments have been posted about VERY EASY ENCRYPTION AND DECRYPT. Why not be the first to post a comment about VERY EASY ENCRYPTION AND DECRYPT.

Post your comment

Subject:
Message:
0/1000 characters