Hello a very simple question that I just can't seem to figure out.
The text change event only fires when I hit enter.
It doesn't fire every time I enter a character.
Any help is appreciated!

Code:
Protected Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged
        MsgBox("test")
 End Sub
JO