Rec Counting

  • Thread starter Thread starter -z
  • Start date Start date
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
 
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.
 
Beautiful!
Thank you!

PC Datasheet said:
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.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
(e-mail address removed)
www.pcdatasheet.com
 
Back
Top