Deselecting an item in a Listbox

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!!
 
O

OldPro

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top