Hi
My listbox sql:
CODE
SELECT tblReports.ReportID, tblReports.ReportName, tblReports.ReportFlag
FROM tblReports
WHERE (((tblReports.ReportFlag)=False));
And the code I run in the double click event simple updates the flag field in the table:
CurrentDb.Execute "UPDATE tblReports SET ReportFlag = True Where ReportID =" & Me.lstOne
Me.lstOne.Requery
My listbox returns those records who#s flag is "False", to exclude it from the listbox I change/update the flag to "True"
HTH's