If I change a text in a textbox how can I call a function to handle an event something like
Private Sub txtPrice_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtPhone.TextChanged
'do something
end Sub
I tried this function but when I change data in my textbox this function is not called
How can I do that?
Thanks in advance.
Private Sub txtPrice_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtPhone.TextChanged
'do something
end Sub
I tried this function but when I change data in my textbox this function is not called
How can I do that?
Thanks in advance.