Continuous form coding

C

ctdak

I have a form with a table behind it that is in continuous form view. I need
to be able to programmatically address the record that the user has the
cursor in at the present. Is there any way to do this programattically in
continuous form view? (Currently my code for this form is all related to
form events or command buttons.)

ctdak
 
L

Linq Adams via AccessMonster.com

As Alex said, the Form_Current event fires each time a record becomes the
current record. If your records have controls such as

Company, Address, Phone

then in code

Me.Company, Me.Address, Me.Phone

refer to those controls on the current record.
 
Top