To keep things relevant, we're talking about a form with two related subforms.
Typically, a user would type in a person's name in the first combobox and when selected, the related four combobox will autofill for user's review, then the user fills in subform as necessary.
Now, I want to allow user to enter a new name, but since a new record does not have the data that is related and required, it will cause an error before the user can enter the related data in the three combobox to right of the attendee name.
For now, I've thought of putting in bogus data to satisfy the requirement until response=acDataErrAdded then have all combobox set to null, to force user to make their selections.... But I'm thinking it's not the best solution, though.
Here is a dump.
Oh, I almost forgot- the combobox in question is unbound as the query to concentate the name can't be updated.... (though my other combobox on other form which acts almost exactly same is bound to a query which is exactly identical to the concentating query is updatable....

)