My combobox pulls its items from a master text file which loads the item
into the listbox and also into the first dimension of a multi dimensional
array. At that point, the listindex of each item in the listbox matches the
row# of each item in the array, making it simple to reference the array for
any updates.
Does anyone have any suggestions on how I can keep those references valid if
I were to sort the listbox, or maybe even just show a limited subset of the
items
My intitial thought was to include a look up table (2 dimensional array)
that would reflect the relationships of any preset groups of listbox item,
but that is limited to pre-configured sets.