i have three list boxes and want to know how i can choose from one listbox and have the others fill in with information example:
in the first listbox if it is loaded with names and i click on one. then in the second listbox would produce an age and the third listbox height.
but i tried with an if statement but it didn't work example:
first listbox:
but as you probably know this doesn't work how can i get this to work?
lee123
in the first listbox if it is loaded with names and i click on one. then in the second listbox would produce an age and the third listbox height.
but i tried with an if statement but it didn't work example:
first listbox:
Code:
if listbox1.text = "Frank" then listbox2.additem 35 listbox3.additem 5'11 end if
lee123
Comment