Hi, just like you have it it's OK.
The idea being I do the ground work so you guys have it easy.
Look at this code:
You simply use the "TextChanged" event to obtain input.
You don't have to do anything else on your side.
The idea being I do the ground work so you guys have it easy.
Look at this code:
Code (vbnet) Select
Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged
' TextBox1.Text = Latest framework input ...you can do as you please with it.
Me.Text = TextBox1.Text
End Sub
You simply use the "TextChanged" event to obtain input.
You don't have to do anything else on your side.