ASKER
Private Sub Form_Timer()
Me.Refresh
If DateDiff("s", Me.TimeIn, Time()) > 60 Then
Me.Refresh
DoCmd.GoToRecord , , acNewRec
Me.TimeIn = Time() '<--- Add this
Me.OperID.SetFocus
Else
End
End If
End Sub
If Abs(DateDiff("s", Me.TimeIn, Time())) > 60 Then
If DateDiff("s", Time(), Me.TimeIn ) > 60 Then
ASKER
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
TRUSTED BY
did you set the form's timer in the afterupdate event of "TimeIn" ?