Requery Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I use the following rowsource code to filter one list box by another.

SELECT tblStudents.StudentNumber, tblStudents.Name, tblStudents.Group FROM
tblStudents WHERE tblStudents.Group=forms!frmGrades!lstGroupName;

No problem, except it doesn't work except when the form is opened. What is
the command to make the second listbox update itself every time I click the
first listbox.
 
Back
Top