Continuous form

C

ctdak

I have a continuous form displaying anywhere from 1 to 5 records at a time.
The user is allowed to edit the contents of some of the fields of each
record. Let's say there are 2 records displayed and the user changes the
contents of Field A for both records as follows:

Record 1, Field A original value = 4250 *
Record 2, Field A original value = 3320

Record 1, Field A user-edited value = 5425
Record 2, Field A user-edited value = 4250 *

My code compares the original value for Field A to the edited value to see
if in fact the user made a change. But the code can't distinguish between
Record 1 and Record 2 of this continuous form, so in this example it thinks
no change has been made by the user when in fact it has.

Somehow, I have to be able to programmatically determine which record the
user is modifying. Unfortunately, with this data table there is no way to
take a combination of the fields to create an unquestionably unique
identifier field for each record.

Any ideas on how my code can distinguish between records without a unique
identifier field?

ctdak
 

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