A family of Microsoft relational database management systems designed for ease of use.
Steve
You have to use a timer event to refresh the form. Actually, just requering the control should do it.
Set the timer interval to 1000. That would be 1 second. For the Timer event:
Private Sub Form_Timer()
Me.MyTextbox.Requery
End Sub
Keep in mind short timer intervals can make an application jumpy. And be sure to have that form closed when you are writing code or the refreshing of the code window will drive you crazy.