I am making an EPOS and I would like continually take input from a textbox but the textbox must only take the value if it is validated and is on a list of variables.
I just need to know what event that would be on the textbox
I am making an EPOS and I would like continually take input from a textbox but the textbox must only take the value if it is validated and is on a list of variables.
I just need to know what event that would be on the textbox
For validation, KeyPress
event is appropriate.
You can control which characters can be entered in the text box.
Here's an example: How do I make a textbox that only accepts numbers?