Question how to populate otherfield using select one items in comboBox

r@Lph

New member
Joined
Jul 26, 2011
Messages
3
Programming Experience
Beginner
how to populate other field using select one items in comboBox ?
one i select one item in combox its automatically populate the associated fiels like textbox etc.
 
textbox1.text = combobox1.selecteditem

edit...

if combobox1.selecteditem = "whatever" then
textbox1.text = "anything"
label1.text = "something"
end if
 
Last edited:
Could also be accomplished with an on change event to the combobox.We all know there is always a hundred ways to do something when coding.
 
Back
Top