If your are on Access 2000 or later, in the form properties find the On Timer event and select [Event Procedure]. In the Timer Interval property type 1. In the event procedure code for the On timer event put the following:
Private Sub Form_Timer()
Text0.Requery
End Sub
You will need to...