|
-
Jul 11th, 1999, 02:53 PM
#1
Thread Starter
New Member
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???
-
Jul 11th, 1999, 03:36 PM
#2
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]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|