i have a set of list boxes (3), the first one is just a list, the second list box displays the information pertaining to the first list box item that is clicked, now i need the last list box to be able to display information on the item clicked in the second list box. (but the information in the second list box is always different depending on the items that are clicked in the first list box) i have the first box set up, and the second as well (i am using cases in the second) (did you follow all that) can i do some sort of code like this:
private sub list2_click
if list1_click case 0 and list2_click case 0 then
list3.additem "123"
if list1_click case 1 and list2_click case 1 then
list3.additem "456"
end if
end sub
i know this is not possible (i tried)
but what is that code i would use to do something like this???
any help is appreciated
private sub list2_click
if list1_click case 0 and list2_click case 0 then
list3.additem "123"
if list1_click case 1 and list2_click case 1 then
list3.additem "456"
end if
end sub
i know this is not possible (i tried)
but what is that code i would use to do something like this???
any help is appreciated