Displaying record position on a form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Im using DoCmd.GoToRecord commands to navigate between records displayed on
a form. Is there a way I can also display record position on a from using
DoCmds ? Example – record 1 of 100, record 2 of 100.
 
-----Original Message-----
Im using DoCmd.GoToRecord commands to navigate between records displayed on
a form. Is there a way I can also display record position on a from using
DoCmds ? Example â?" record 1 of 100, record 2 of 100.
.

Hi,

you can use a variable that increments and decrements as
you navigate from record to record, combined with
me.recordset.recordcount

luck
Jonathan
 
Back
Top