Rec counting

Z

-z

I use A2K

Under my Form_Current, I have the following code, which shows me the total
number of recs, but I would like to see my txtBx count like this: 1 of 3, 2
of 3, 3 of 3

Me![txtCount] = Me.RecordsetClone.RecordCount

Thank you
 
F

fredg

I use A2K

Under my Form_Current, I have the following code, which shows me the total
number of recs, but I would like to see my txtBx count like this: 1 of 3, 2
of 3, 3 of 3

Me![txtCount] = Me.RecordsetClone.RecordCount

Thank you

Look up the CurrentRecord property in VBA help.
 
Top