Number of records found

Dusp

New member
Local time
Today, 22:37
Joined
Jan 27, 2006
Messages
7
A form i have gains its records from a query. I know that the number of records found is displayed down the bottom, but is it possible to have a text box displaying this, so i can choose where on the form i have it?

TIA
Dusp
 
I have an ubound text box on a form and put the code under the 'current' event of my form:
Me!TextBoxName = CurrentRecord & " of " & Me.RecordsetClone.RecordCount

Shows as Record 7 of 23 etc but you can change that...
 

Users who are viewing this thread

Back
Top Bottom