I am trying to add records from my table into a listbox. Can I use a "For each" statement to add all the records into the listbox?
Ex. Dim rs as recordset
Set rs as CurrentDb.OpenRecordset("CheckTable")
For Each *** in rs!Names
Is that possible? Thanks!