Question Combobox Question

crystaluz

Well-known member
Joined
Feb 17, 2009
Messages
55
Programming Experience
Beginner
Hello there..
I have a question..

I have a Combobox1 and Label1 in a form.
There are items in ComboBox1 which is integer from 1 to 9.

I want the user select the number in the combobox, and the selected number will be * 2.

The answer will be shown at Label1.Text without any Click Button Event.
How can i do that?

Thank you..
 
Here's what you'll need, just put it together:

SelectedIndexChanged event on the ComboBox
Text Property on the Label
Item(SelectedIndex) on the ComboBox
 
Back
Top