Recupere valeur liste deroulante VB2008 - VB/VBA/VBS - Programmation
Marsh Posté le 14-12-2008 à 15:02:34
Bonjour, Comment récupérer une valeur dans une liste déroulante s'il vous plait mon code est celui-ci pour la liste déroulante : Private Sub List_Niveau_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles List_Niveau.SelectedIndexChanged If List_Niveau.Text = "facile" Then Chance = 10 End If If List_Niveau.Text = "moyen" Then Chance = 3 End If If List_Niveau.Text = "expert" Then Chance = 1 End If End Sub
Marsh Posté le 25-01-2009 à 20:02:37
salut ca ne marcherai pas mieux avec if list_niveau.selecteditem ="facile"..........................
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 14-12-2008 à 15:02:34
Bonjour,
Comment récupérer une valeur dans une liste déroulante s'il vous plait mon code est celui-ci pour la liste déroulante :
Private Sub List_Niveau_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles List_Niveau.SelectedIndexChanged
If List_Niveau.Text = "facile" Then
Chance = 10
End If
If List_Niveau.Text = "moyen" Then
Chance = 3
End If
If List_Niveau.Text = "expert" Then
Chance = 1
End If
End Sub