Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. If TextBox1.Text.Contains("b") Then
  2. TextBox1.Text = TextBox1.Text.Replace("b", "d")
  3. End If
  4.  
  5. If TextBox1.Text.Contains("c") Then
  6. TextBox1.Text = TextBox1.Text.Replace("c", "e")
  7. End If
  8.  
  9. If TextBox1.Text.Contains("d") Then
  10. TextBox1.Text = TextBox1.Text.Replace("d", "f")
  11. End If
  12.  
  13. If TextBox1.Text.Contains("e") Then
  14. TextBox1.Text = TextBox1.Text.Replace("e", "g")
  15. End If
  16.  
  17. If TextBox1.Text.Contains("f") Then
  18. TextBox1.Text = TextBox1.Text.Replace("f", "h")
  19. End If
  20.  
  21. If TextBox1.Text.Contains("g") Then
  22. TextBox1.Text = TextBox1.Text.Replace("g", "i")
  23. End If
  24.  
  25. If TextBox1.Text.Contains("h") Then
  26. TextBox1.Text = TextBox1.Text.Replace("h", "j")
  27. End If
  28.  
  29. If TextBox1.Text.Contains("i") Then
  30. TextBox1.Text = TextBox1.Text.Replace("i", "k")
  31. End If
  32.  
  33. If TextBox1.Text.Contains("j") Then
  34. TextBox1.Text = TextBox1.Text.Replace("j", "l")
  35. End If
  36.  
  37. If TextBox1.Text.Contains("k") Then
  38. TextBox1.Text = TextBox1.Text.Replace("k", "m")
  39. End If
  40.  
  41. If TextBox1.Text.Contains("l") Then
  42. TextBox1.Text = TextBox1.Text.Replace("l", "n")
  43. End If
  44.  
  45. If TextBox1.Text.Contains("m") Then
  46. TextBox1.Text = TextBox1.Text.Replace("m", "o")
  47.  
  48. End If
  49.  
  50. If TextBox1.Text.Contains("n") Then
  51. TextBox1.Text = TextBox1.Text.Replace("n", "p")
  52. End If
  53.  
  54. If TextBox1.Text.Contains("o") Then
  55. TextBox1.Text = TextBox1.Text.Replace("o", "q")
  56. End If
  57.  
  58. If TextBox1.Text.Contains("p") Then
  59. TextBox1.Text = TextBox1.Text.Replace("p", "r")
  60. End If
  61.  
  62. If TextBox1.Text.Contains("q") Then
  63. TextBox1.Text = TextBox1.Text.Replace("q", "s")
  64. End If
  65.  
  66. If TextBox1.Text.Contains("r") Then
  67. TextBox1.Text = TextBox1.Text.Replace("r", "t")
  68. End If
  69.  
  70. If TextBox1.Text.Contains("s") Then
  71. TextBox1.Text = TextBox1.Text.Replace("s", "u")
  72. End If
  73.  
  74. If TextBox1.Text.Contains("t") Then
  75. TextBox1.Text = TextBox1.Text.Replace("t", "v")
  76. End If
  77.  
  78. If TextBox1.Text.Contains("u") Then
  79. TextBox1.Text = TextBox1.Text.Replace("u", "w")
  80. End If
  81.  
  82. If TextBox1.Text.Contains("v") Then
  83. TextBox1.Text = TextBox1.Text.Replace("v", "x")
  84. End If
  85.  
  86. If TextBox1.Text.Contains("w") Then
  87. TextBox1.Text = TextBox1.Text.Replace("w", "y")
  88. End If
  89.  
  90. If TextBox1.Text.Contains("x") Then
  91. TextBox1.Text = TextBox1.Text.Replace("x", "z")
  92. End If
  93.  
  94. If TextBox1.Text.Contains("y") Then
  95. TextBox1.Text = TextBox1.Text.Replace("y", "a")
  96. End If
  97.  
  98. If TextBox1.Text.Contains("z") Then
  99. TextBox1.Text = TextBox1.Text.Replace("z", "b")
  100. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement