Rec Counting

Z

-z

I use A2K

I have a txtBx I want to show the count of recs, NOT the Total Count, BUT
each rec, as 1, 2, 3...

Thank you
 
P

PC Datasheet

Put the following code in the OnCurrent event of your form:
Me!NameOfTextBox = Me.CurrentRecord

This will display the same number you see in the middle of the navigation
buttons.
 
Top