-
Working on a form for an Access database and I would like the data control to read "Record # ___ of ___" to reflect the current record position and the number of records in the table. Not sure how to do this. Any suggestion???
-
I assume that you have a Lable named Lable1 on your form to show this and Data control named Data1.
Code:
Lable1.Caption = "Record # " & Data1.AbsolutePosition & " of " & Data1.RecordCount
Regards,
------------------
Serge
Software Developer
[email protected]
[email protected]