How do you retrieve the record number in Access?

  • Thread starter Thread starter Loein
  • Start date Start date
L

Loein

I need to be able to retrieve the current record number
in a form. Does anyone know what the command is? I have
worked extensively in DBX where I was able to retrieve
the current record number. Does anyone know if there is
an equivelant command in Access?
 
This is from Access Help under the CurrentRecord property:
Dim lngrecordnum As Long
lngrecordnum = frm.CurrentRecord

You could have this in your Form_Current procedure.
Geof.
 
Back
Top