Search results for query: *

  • Users: XIXl
  • Order by date
  1. X

    typing too fast for KeyUp event???

    I have solved this by moving the routine into the TextChanged event. What was happening was I was typing and overlapping the keys. for example, the last 2 numbers being typed were 6 and then 1. I was hitting the 6 key and before the key was released, I was typing the 1 key. Therefore, when...
  2. X

    typing too fast for KeyUp event???

    Here is the complete listing for this function, thanks for taking a look at it: Private Function ValidInputText(ByVal strIn As String) As Boolean Dim strTemp As String strTemp = Trim(strIn) If strTemp.Length() = 7 And (strTemp.LastIndexOf("-") = 1) Then 'enable the Next Button...
  3. X

    typing too fast for KeyUp event???

    I have a textbox that I have written a KeyUp event for, and it looks at the contents of the text box for validation. The problem is that when I type the number too fast, the previous event evaluates to true and fires heavy database routines multiple times. I can't quite figure this out, any...
Back
Top