see if this helps. There are also a bunch of different options in the listbox examples db.

Error Using List Box with Simple Multi Select
see if this helps. There are also a bunch of different options in the listbox examples db.
OK, slight problem. When I double click in lstEnrolled to remove a course, I get the confirmation to remove, when I click yes I receive "Run-time error '3061': Too few parameters. Expected 1.
I have made a few changes but only to field names.
Cant help you without seeing your changes and the double click event code.
you had
when it should beCode:strSql = "Delete * from tblCourseEnrollment where StudentCourseID_FK = " & Me.lstEnrolled
Code:strSql = "Delete * from tblCourseEnrollment where StudentCourseID_PK = " & Me.lstEnrolled
Good luck with your project![]()
Move items in listbox up and down using multi select simple
Allen Browne's Use a multi-select list box to filter a report with Two List Boxes
Multi Select Simple Returning No Results