C Chris K Jul 25, 2010 #1 Remind me folks - what is the event that fires every time the record changes ( i want to display the record number)
Remind me folks - what is the event that fires every time the record changes ( i want to display the record number)
C Chris K Jul 25, 2010 #2 I seem to remember it was form_current, but cant remember which property displays current record number Private Sub Form_Current() With Me lblCount.Caption = .CurrentRecord & "/" & ??????? End With End Sub
I seem to remember it was form_current, but cant remember which property displays current record number Private Sub Form_Current() With Me lblCount.Caption = .CurrentRecord & "/" & ??????? End With End Sub
D Douglas J. Steele Jul 25, 2010 #3 CurrentRecord is the current record number, so you seem to have answered your own question! Are you looking for total records? The only way to be sure is to move to the end of the form's recordset. Me.RecordsetClone.MoveLast Me.RecordsetClone.RecordCount
CurrentRecord is the current record number, so you seem to have answered your own question! Are you looking for total records? The only way to be sure is to move to the end of the form's recordset. Me.RecordsetClone.MoveLast Me.RecordsetClone.RecordCount