Navigation Buttons option set to "No"

frankbutcher

Registered User.
Local time
Today, 15:42
Joined
Aug 6, 2004
Messages
192
Hi All.
I have a form with the "navigation buttons" option in format set to No.

However, I would like to put e.g "Record 1 of 5" etc on the for, and it obviously to change when a new record is added.

Can this be done?

Thanks.

Frank.
 
Yes,
Create an ubound text box on a form and put the code under this 'current' event of my form:
Code:
Me!TextBoxName = "Record " & CurrentRecord & " of " & Me.RecordsetClone.RecordCount

That should do it.

Steve
 
Thanks!

:) That works a treat

Thank you very much Steve.

Frank.
 

Users who are viewing this thread

Back
Top Bottom