So I'm kind of new to VB.NET on Visual Studio 2010 and I'm trying to do like a simple "cripter" I think. So basically what I'm doing is every time someone puts a letter or number, on the textbox it gives a random string. So the user puts on the textbox the letter A and gives the string 1123k. Is there anyway that I can do so that the after message where shows 1123k only show when button1 is clicked? Because if the user puts abc it will show 3 times the same string. Heres little bit of the code.
If (TextBox1.Text = ("b")) Then
MessageBox.Show("ak281a")
End If