Bonjour,
J'ai créer une combobox (d'ailleurs j'ai un autre post sur le sujet combox box mais pour l'effacer), et pour ne polluer les différent post, j'ai préféré en créer un nouveau.
Ma question une combobox a t'elle des limites dans le nombre de champs et d'action ?
Ma combobox fonctionnait très bien avec 6 données et actions différents mais en en mettant 16 ça ne fonctionne plus et j'ai une erreur.
Je vous laisse mon code au cas il s'agit d'une erreur mais je pense pas
Je comprend pas, et si la combox a des limites je suis très mal la !!!!!
J'ai créer une combobox (d'ailleurs j'ai un autre post sur le sujet combox box mais pour l'effacer), et pour ne polluer les différent post, j'ai préféré en créer un nouveau.
Ma question une combobox a t'elle des limites dans le nombre de champs et d'action ?
Ma combobox fonctionnait très bien avec 6 données et actions différents mais en en mettant 16 ça ne fonctionne plus et j'ai une erreur.
Je vous laisse mon code au cas il s'agit d'une erreur mais je pense pas
Code:
Private Sub ComboBox1_Change()
If ComboBox1.Value = "C.P. - 1 j." Then
Call CPJ
End If
If ComboBox1.Value = "C.P.- 1/2 j." Then
Call CPDJ
End If
If ComboBox1.Value = "RTE - 1j." Then
Call RTEJ
End If
If ComboBox1.Value = "RTT - 1 j." Then
Call RTTJ
End If
If ComboBox1.Value = "RTT - 1/2 j." Then
Call RTTDJ
End If
If ComboBox1.Value = "R. Compensateur - 1 j." Then
Call RCJ
End If
If ComboBox1.Value = "R. Compensateur - 1/2 j." Then
Call RCDJ
End If
If ComboBox1.Value = "Maladie - 1 j." Then
Call malJ
End If
If ComboBox1.Value = "Maladie - 1/2 J." Then
Call malDJ
End If
If ComboBox1.Value = "Formation - 1 j." Then
Call FORJ
End If
If ComboBox1.Value = "Formation - 1/2 j." Then
Call FORDJ
End If
If ComboBox1.Value = "Sans solde 1 j." Then
Call SSJ
End If
If ComboBox1.Value = "Sans solde 1/2 j." Then
Call SSDJ
End If
If ComboBox1.Value = "Autre - 1 j." Then
Call autreJ
End If
If ComboBox1.Value = "Autre - 1/2 j." Then
Call autreDJ
End If
If ComboBox1.Value = "Annuler un congé" Then
Call Annulecongé
End If
End Sub
Je comprend pas, et si la combox a des limites je suis très mal la !!!!!