Hi I have an App with nested sub-forms, the record navigation is confusing and I’ve started moving the Record Navigation controls to the top of the forms to improve that. I’m stuck on the ‘n of n’ field, is there a generic property(s)/query that will give me this?
Share
For the first n, use the AbsolutePosition property of the form’s RecordsetClone. see MSDN
For the second n, use the RecordCount property.
Update: I prefer Mike’s approach using CurrentRecord. I created a form with 2 text boxes: txtCurrentRecord and txtRecordCount. Then this procedure for the form’s On Current event causes the text boxes to display the same values as the built-in navigation bar.
Update2: I added a procedure to Form Load to make sure RecordCount is accurate.