How do I pull out a value for the required - NOT selected Item in a listbox - I'm actually trying to pull out all the unchechecked Items and use their ValueMember values.
There has to be a nicer method than this:
MyListbox.SetSelected(indexValue, True)
Debug.WriteLine(MyListbox.SelectedValue)
It's late and my eyes are too tired to trawl through any more MSDN Library pages....all help appreciated.
There has to be a nicer method than this:
MyListbox.SetSelected(indexValue, True)
Debug.WriteLine(MyListbox.SelectedValue)
It's late and my eyes are too tired to trawl through any more MSDN Library pages....all help appreciated.