Field Update Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello. Normally, when entering data into a field, it doens't update until
you lose focus on that field. Is there a way to retrieve the value of a
field as characters are being entered instead of using the fieldname.value
property?

Thanks!
 
If you are using a form, you can use the Text property of the control in its
Change event.
 
The Change event of the control fires with each keystroke.

Example:
Private Sub Text0_Change()
Debug.Print Me.Text0.Text
End Sub
 
Back
Top