hi,
does textchange control for the textbox executes for every change in every character or for the full text?
ayat abukhadra 0 Light Poster
Recommended Answers
Jump to PostFor every keystroke. Add this event handler and you will see. The titlebar will be updated every time you press a key.
Private Sub TextBox1_TextChanged(sender As System.Object, e As System.EventArgs) Handles TextBox1.TextChanged Me.Text = TextBox1.Text End Sub
All 2 Replies
Reverend Jim 5,225 Hi, I'm Jim, one of DaniWeb's moderators. Moderator Featured Poster
ayat abukhadra 0 Light Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.