C
Chris K
I have Mainform which includes a combo linked to a tied ID field with a look
up to contact details in a SecondTable
If the user needs to add a new contact (not in list), I have a SecondForm
for the SecondTable which pops up so they can add/edit records
the SecondForm is continuous to allow easy adding/editing
After they have finished adding/editing I want to pass the IDField of the
currently selected record back to the combo on the MainForm
Questions:
1/ Should I write the value to the form/combo or direct to the MainTable?
2/ How do I refer to the IDField contents on the currently active record
(where the cursor is) on the SecondForm
Form Close
Tables("MainTable").mycombo = Me.CurrentRecord.IDField ?
up to contact details in a SecondTable
If the user needs to add a new contact (not in list), I have a SecondForm
for the SecondTable which pops up so they can add/edit records
the SecondForm is continuous to allow easy adding/editing
After they have finished adding/editing I want to pass the IDField of the
currently selected record back to the combo on the MainForm
Questions:
1/ Should I write the value to the form/combo or direct to the MainTable?
2/ How do I refer to the IDField contents on the currently active record
(where the cursor is) on the SecondForm
Form Close
Tables("MainTable").mycombo = Me.CurrentRecord.IDField ?