Guest User

Untitled

a guest
Jan 21st, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.29 KB | None | 0 0
  1.     Function crypto(ByVal str) As String
  2.         Dim x As String, i As String = ""
  3.         Dim key As String = "the quick brown fox jumps over the lazy dog"
  4.         For Each x In TextBox1.Text.ToLower
  5.             i &= (key.IndexOf(x) + 10)
  6.         Next
  7.         Return i
  8.     End Function
Add Comment
Please, Sign In to add comment