Highlight Listbox Selections

  • Thread starter Thread starter David J
  • Start date Start date
D

David J

I would like to highlight desired selection in a list box
based on an event other than clicking it. For example, I
would like to click on a button that highlights/selects
itemdata(0) and itemdata(1).

What would be the syntax used to highlight any item in a
listbox other than clicking in it.

Thanks
Dave J.
 
Me!MyListBox.Selected(0) = True
Me!MyListBox.Selected(1) = True

(replace MyListBox with the name of your list box)
 
Back
Top