I hate it when this happens. Yesterday I found a neat enhancement to the following code:
Private Sub Form_Current()
If Me.NewRecord Then
Me!lblRecCount.Caption = "New"
Else
Me.RecordsetClone.Bookmark = Me.Bookmark
Me!lblRecCount.Caption = "RA # " & CStr(Me.RecordsetClone.AbsolutePosition + 1) _
& " of " & CStr(Me.RecordsetClone.RecordCount)
End If
End Sub
That would, when the form is first opened, ensure that the full record count showed:
1 of 375
and not
1 of 1
It had to do with going to the last record, or something,
Aaarggghhh! I can



