D
Dave Hawks
I am using a Form to display the results of a query,and the use the following
code to step through the records when triggered by the on timer property of
the form.
Private Sub Form_Timer()
DoCmd.GoToRecord , "", acNext
If fldName = "LastRec" Then
DoCmd.GoToRecord , "", acFirst
End If
End Sub
Because of the size of the recordset I would like to step 20 records on each
trigger.
Can anyone suggest a method.
Thanks
code to step through the records when triggered by the on timer property of
the form.
Private Sub Form_Timer()
DoCmd.GoToRecord , "", acNext
If fldName = "LastRec" Then
DoCmd.GoToRecord , "", acFirst
End If
End Sub
Because of the size of the recordset I would like to step 20 records on each
trigger.
Can anyone suggest a method.
Thanks