Detecting Record Selection in a Form

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

Guest

I'm attempting to load a custom control with data from a bound control on a
form, but I don't know how to detect when the user moves from one record in
the form to another.

I'm sure it's a simple problem, but I'm stumped.

Is there a specific form event that fires when the record is changed
(without updating mind you)?

Thanks

Andy
 
I'm attempting to load a custom control with data from a bound control on a
form, but I don't know how to detect when the user moves from one record in
the form to another.

I'm sure it's a simple problem, but I'm stumped.

Is there a specific form event that fires when the record is changed
(without updating mind you)?

Thanks

Andy

You didn't mention what kind of control was on the form, but does it
have a Current( ) event?
 
That would be the Form Current Event. It fires for every record change,
including when the form opens and for new records added.
 
Back
Top