Displaying record position on a form.

A

Angel b1

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.
 
M

Michel Walsh

Hi,


1 + Me.Recordset.AbsolutePosition


should return the position. Recorset.Count should return the total number of
records.


Hoping it may help,
Vanderghast, Access MVP
 
Top