I was wondering if you can have a muli line ListBox with only 1 index for more than one line...
ie. Im working on a restaurant program and for one item i want to display on more than one line... and when you click on a item it highlights all the ones in that index...
small |\
ham | > these 3 lines i want for 1 index so if i want to delete a item it would delete all 3 lines...
pepp |/
-------------------------------------------------------------------------------------------------
medium | \
pepp | > these 4 lines i want for 1 index
mush | /
onion |/
Is there a way to do that with listbox's or a way to somehow code it to work like that????
................................................................................................................................
Well this is what i figured out
int
List<
bool
While (isfound ==
{
findItem += numberInEach[count];
isFound =
count++;
}
for
findItem--;
listBox1.SetSelected(findItem, True);
Not the best way, i just thought there would be a better way of selecting multipul lines in one index is all