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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top