PhilMan2006
MIS
I have a combo box that looks at a table containing the field Class Title, which list all the classes in the table. Here is the SQL code of the row source:
SELECT DISTINCT tblTraining.[Class Title]
FROM tblTraining
ORDER BY tblTraining.[Class Title];
This works wonderful. The only problem I have is when I add a new Class Title (a new Record, containing other data as well) and want to add a second record with the same Class Title with different information I have to exit the form and go back into the form in order for the Class Title I just added to show up in my listing. Is there a way that I can add a new record (new Class Title), save the record, and have the Class Title appear in my listing without having to exit the main form?
Any help is appreciated.
Thanks,
Phil
SELECT DISTINCT tblTraining.[Class Title]
FROM tblTraining
ORDER BY tblTraining.[Class Title];
This works wonderful. The only problem I have is when I add a new Class Title (a new Record, containing other data as well) and want to add a second record with the same Class Title with different information I have to exit the form and go back into the form in order for the Class Title I just added to show up in my listing. Is there a way that I can add a new record (new Class Title), save the record, and have the Class Title appear in my listing without having to exit the main form?
Any help is appreciated.
Thanks,
Phil