Deselecting an item in a Listbox

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

Guest

In Access 2002, I need to know how to programmatically deselect an item in a
listbox. The user selects one or more rows in the listbox, and I process
those selections programmatically. At the end of each spin through the loop,
I want to deselect the item, so the highlight disappears from the listbox
row(s). How do I do that please?

thanks!!
 
In Access 2002, I need to know how to programmatically deselect an item in a
listbox. The user selects one or more rows in the listbox, and I process
those selections programmatically. At the end of each spin through the loop,
I want to deselect the item, so the highlight disappears from the listbox
row(s). How do I do that please?

thanks!!

somelistbox.Selected(value) = False
 
Back
Top