How to Programmatically Select an Item in a ListBox
I have a ListBox (not VListBox). Normally when I click at each item using a mouse, the item will be highlighted. Now I have a list() that contains some items. The items on the list() do not necessarily match the items on the ListBox. Through code, I want to automatically select (highlight) the items on the ListBox that are present on the list(). For example: If my ListBox contains the items {"a", ...
