M
Mike Johnson
How would you go about determining if the current record on the form is the
firstrecord?
firstrecord?
If Me.CurrentRecord = 1 Then....Mike said:How would you go about determining if the current record on the form is the
firstrecord?
How would you go about determining if the current record on the form
is the firstrecord?
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