|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Combobox
I did a combobox with items, but i dont know how to do so when i click on the item then perform actions.
|
|
#2
|
|||
|
|||
|
Something like this, perhaps?
Code:
Private Sub Combo1_Click() Select Case Combo1.ListIndex Case 0 'Do something! MsgBox "Item #1" Case 1 'Do whatever! MsgBox "Item #2" Case 2 'I bless the rains down in Africa! MsgBox "Item #3" End Select End Sub |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > Combobox |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|