Continous form records

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

Guest

Is there a way to distinguish between records in a recordset displayed using
a continuous form? Event code for a continuous form (detail) control
automatically pertains to that control for all records displayed. This is
very useful, but then how do you distinguish between the records being
displayed if you want to customize that code per record? For example, the
user is allowed to change the data of one of the continuous form controls and
the OnChange event code of that control has to know which of the records
displayed were changed by the user.
 
In a continuous forms view, when you change the value in one control and the
Change event occurs, the code "reads" the info from that specific record, as
that record is the one with the "focus".
 
That helps. Thanks again Ken.
ctdak


Ken Snell said:
In a continuous forms view, when you change the value in one control and the
Change event occurs, the code "reads" the info from that specific record, as
that record is the one with the "focus".
 
Back
Top