I’m missing something here. I want to update a recordset with a value from a text box. By going through the listbox, I want to update only those records that are selected. Here is the code:
For Each varItem In lstItems.ItemsSelected
rst!CheckNo = Me.txtCheckNo
rst.Update
Next
This only updates the first selection.
What am I missing?
Thanks!!!