I am developing an applicaiton that you can input auditing data to --> this updates a database and so on.
What happens is the user enters an integer/double value into a textbox using an inkedit. The input looks like ink for a second and then it is recognized. If the value is too low or too high, the textbox changes color, red or green (if value is within spec). The value is only validated if another textbox is activated. My problem is when the last valu is added a user has to find something to click to validate the text! I want to eliminate that inconvenience. Right now the validation header is this:
VB Code:
Private Sub FBR1_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FBR1.Validating
I want to set it so it is validated when the text is recognized. Does that make sense??
thx in advance!!
Juri




Reply With Quote