Record number display on Forms 
Author Message
 Record number display on Forms

I am trying to require that my users to use a "New
Record" button on a form that validates the data before
adding a record (usin a macro.)  In doing this I have
hidden the record navigation buttons for the form.  This,
of course also hides the current record number and the
number of records in the table.

Is there a way, either in the "More Controls" section or
via VBA to display the current record number and total
number of reords on the form?



Tue, 13 Dec 2005 23:35:48 GMT  
 Record number display on Forms
You can use a textbox and in its ControlSource property write

    =[CurrentRecord] & " of " & [RecordsetClone].[RecordCount]

--
Saludos desde Barcelona
Juan M. Afan de Ribera
MVP [Ms Access]



Quote:
> I am trying to require that my users to use a "New
> Record" button on a form that validates the data before
> adding a record (usin a macro.)  In doing this I have
> hidden the record navigation buttons for the form.  This,
> of course also hides the current record number and the
> number of records in the table.

> Is there a way, either in the "More Controls" section or
> via VBA to display the current record number and total
> number of reords on the form?



Wed, 14 Dec 2005 02:11:39 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Display record number in VB3

2. (ADO)Displaying a set number of records..

3. Displaying the number of records in a database

4. Displaying the number of records.

5. How to display a number in scientific form

6. Number of records in filtered form

7. Number of records on form?

8. Custom Record Counting & Numbering in Forms

9. display form while a modal form is displayed

10. Form opening not displaying the requested record

11. modal form wont display records

12. Displaying the Current Record (in a Form)

 

 
Powered by phpBB® Forum Software