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.
 
Can you explain? The change event doesn't seem to fire until you lose focus
 
The Change event of the control fires with each keystroke.

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top