Advertisement
Guest User

[Encrypt/Decrypt] Encrypt Function

a guest
May 26th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.48 KB | None | 0 0
  1. Dim rand1 As String  
  2. Dim rand2 As String  
  3. Dim rand3 As String  
  4. Dim rand4 As String  
  5. Dim rand5 As String  
  6. rand1 = "ageh2e"  
  7. rand2 = "878zwh2"  
  8. rand3 = "kknaefh31"  
  9. rand4 = "*aje!#$1n@3"  
  10. rand5 = "@$^!adfgag3%ra33"  
  11. TextBox1.Text = TextBox1.Text.Replace("a", rand1)  
  12. TextBox1.Text = TextBox1.Text.Replace("e", rand2)  
  13. TextBox1.Text = TextBox1.Text.Replace("i", rand3)  
  14. TextBox1.Text = TextBox1.Text.Replace("o", rand4)  
  15. TextBox1.Text = TextBox1.Text.Replace("u", rand5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement