For a ListBox, is setting the ListIndex property the same as setting the value property?
Given a ListBox already populated with;
AAAAA
BBBBB
CCCCC
DDDDD
ListBox.value = "BBBBB" does not set the value but
ListBox.ListIndex = 1 does select BBBBB
Does setting the value also set the ListIndex #? Is it possible to set the selection by setting the value equal to a member of the list?
Given a ListBox already populated with;
AAAAA
BBBBB
CCCCC
DDDDD
ListBox.value = "BBBBB" does not set the value but
ListBox.ListIndex = 1 does select BBBBB
Does setting the value also set the ListIndex #? Is it possible to set the selection by setting the value equal to a member of the list?