how to reference a field in the continous form

  • Thread starter Thread starter paul
  • Start date Start date
P

paul

Hi,
In my Access 2000 application, I have a subform
(continuous form, from an query result) it may contains 1
to 30 records. I tried to wrote an event for an field
(emp_no), how do I reference the field of a specific
records?
Thanks.
 
You don't reference the field for a specific record. You either make that
record the one currently selected and then reference the field; or use a
recordset object that is a copy of the original recordset and then do a find
in that recordset object and use the value of the field from it.
 
Back
Top