First Record

  • Thread starter Thread starter Guest
  • Start date Start date
Mike Johnson:
How would you go about determining if the current record on the form
is the firstrecord?

Private Sub Form_Current()
If Me.Recordset.AbsolutePosition = 0 Then
MsgBox "This is the first record"
End If
End Sub

Acki
 
Thanks.

Joerg Ackermann said:
Mike Johnson:


Private Sub Form_Current()
If Me.Recordset.AbsolutePosition = 0 Then
MsgBox "This is the first record"
End If
End Sub

Acki
 
Back
Top