I have created a combo box field to allow user to browse records from a table. The form consisting of the combo box field has also a command button to allow the user to bring up a pop-up form to create a new record. Once the user adds a record, it returns control to the combo box field and popup screen disappears. My question: How to I tell access to requery the following query below that is on the Row Source of the Combo box field and thus refresh the the combo box with the new record created?
Thanks in advance for your suggestions.
Juan
In Row Source the following appears:
SELECT ReportInfo.ReportId, ReportInfo.LastName, ReportInfo.FirstName, ReportInfo.ReportNickname, ReportInfo.ReportName FROM ReportInfo ORDER BY ReportInfo.Lastname;
Thanks in advance for your suggestions.
Juan
In Row Source the following appears:
SELECT ReportInfo.ReportId, ReportInfo.LastName, ReportInfo.FirstName, ReportInfo.ReportNickname, ReportInfo.ReportName FROM ReportInfo ORDER BY ReportInfo.Lastname;