Replicate navigation controls

sdawson

Registered User.
Local time
Today, 22:22
Joined
Apr 22, 2003
Messages
165
I need to replicate the navigation buttoms in a form viz. First record, Next record, Previous record, Last record, New record, Total records etc.
All these are easy but I'm struggling with the record number of the current record displayed viz. 1 of 50, 2 of 50, 33 of 50 etc.
Any threads or code would be welcome.
 
Yes, found some complicated answers to what I belived was a simple question.
You have given me the simple answer.
Thanks.
 
And just an FYI for you.

Please remember that the "Record Count" is not an identifier of a particular record. It is a numeric number that represents the position of the record in the current recordset, but factors like adding/deleting records, differing sort order, etc. will change which number is displayed for any particular record. The numbering is ONLY good for that particular session where you have the form open. If you close and reopen the form, requery the form, etc. the numbers will not necessarily be the same for any particular record.

If you want to identify a particular record, for any reason, use the record's primary key instead.
 
Yes, but got a lot of complicated answers to a simple question.
You gave me the simple answer I needed.
Thanks
 
Yes Bob I do understand this.
I my haste to get an quick answer I may have used incorrect terms.
 
An example of plug and play nav button subform. (Just drop onto a form as a subform and it'll drive the main form navigation).
It was only after I'd made it that I realized that Stephen Lebans has a near identical example. Oh well, good company at least. :-)
 

Users who are viewing this thread

Back
Top Bottom