Record Source Continuous Forms

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

When I open up a continous form is there any way of counting how many
records are in the form.
cheers!
 
In code:

With Me.RecordsetClone
If .RecordCount <> 0 Then
.MoveLast
Msgbox .RecordCount & " records."
End If
End With
 
Back
Top