Condition ComboBox VB.Net

Fermé
pictom41 Messages postés 508 Date d'inscription mercredi 7 mai 2008 Statut Membre Dernière intervention 26 décembre 2011 - Modifié par pictom41 le 30/01/2011 à 13:10
 mathsroller97 - 29 oct. 2012 à 17:17
J'ai un problème avec mes ComboBox, je vous fais voir le code :
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox2.SelectedIndexChanged

If ComboBox1.SelectedValue = "Lady Gaga" Then

ComboBox2.Items.Add("Alejandro")




End If


End Sub

Sauf que quand je choisis Lady Gaga dans la combobox 1, je n'ai pas Alejandro dans la 2ème combobox.
Il y aurait t'il un raté dans ma condition ?
Ou autre ?
Cordialement

1 réponse

pm31 Messages postés 57 Date d'inscription jeudi 22 mai 2008 Statut Membre Dernière intervention 28 mai 2012 1
6 févr. 2011 à 10:57
Bonjour , essaie ça :

If ComboBox1.SelectedItem = "Lady Gaga" Then

ComboBox2.Items.Add("Alejandro")




End If

CDLT
1
mathsroller97
29 oct. 2012 à 17:17
merci ça marche :)
0