According to the MS website, if the Recordset Type = Dynaset and you have a table with one to many relationships, you cannot edit the field on the "one" side (unless Cascade Updates has been enabled).
http://msdn.microsoft.com/en-us/libr.../jj249050.aspx
In the attached database, go to record 1 of the main form. The mother's name should say Katherine Artemov and gymnast name as Sasha Artemov. Under the parent section, the account number is 0001.
I have the Recordset Type = Dynaset. '
tblParents' and 'tblGymnast' is linked by the primary key called 'accountNo.'
Also, in the relationships window I have the link between 'tblParents' and 'tblGymnast' set so that Cascade Update IS NOT enabled.
Therefore, when I attempt to modify the value in the 'accountNo' field under the "parents section" of the form, which is bound to the table 'tblParents' I should not be able to edit this right?
But if I click inside of the field, I can in edit 0001 and change it to, let's say 0005. Now when I tab out of that field I end up getting a message saying "The record cannot be updated or deleted because table 'tblGymnast' includes related records." But regardless of that message, I thought that I wasn't supposed to even be able to edit and make changes to the value in the accountNo field in the first place, but still I was able to make a change to the existing value in the accountNo field. What am I missing?