I have a form linked to an Access table.
The table contains Student information.
Because of the vast amount of information for each student, I have created a TabControl to handle information about the student’s parents.
After listing the parents name as two separate textboxes on the form: txtParent1 and txtParent2, the TabControl "tcParentContacts" is directly to the right of the two TextBoxes.
There are 4 TabPages in tcParentContacts:
tabpgCellPhone, which contains: mtxtParent1Cell (MaskedTextBox), and mtxtParent2Cell (MaskedTextBox)
tabpgHomePhone, which contains: mtxtParent1Home (MaskedTextBox), and mtxtParent2Home (MaskedTextBox)
tabpgWorkPhone, which contains: mtxtParent1Work (MaskedTextBox), and mtxtParent2Work (MaskedTextBox)
and tabpgEmail, which contains: txtParent1Email (TextBox), and txtParent2Email (TextBox)

For some reason…which I haven’t as yet figured out…when navigating to a different record in the table, the Email fields are not updating to the information in the currently displayed record. This field is used by another form that is opened when the current record is displayed to extract communications with the parents. The problem is that the sub-form is using the wrong Email address to pull in Exchange info… it’s using the Email address from a previously displayed Student that was navigated to before the current student.
Any ideas would be greatly appreciated
Thank you for your time in advance,
Paul Goldstein