1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| Private Sub UserForm_Initialize()
Me.ComboBox1.Value = ""
Me.France_img.Visible = False
Me.Italie_img.Visible = False
Me.RoyaumeUni_img.Visible = False
Me.Allemagne_img.Visible = False
Me.PaysDeGalle_img.Visible = False
Me.Irlande_img.Visible = False
End Sub
Private Sub ComboBox1_Change()
If Me.ComboBox1.Value = "France" Then
Me.France_img.Visible = True
Else: Me.France_img.Visible = False
End If
If Me.ComboBox1.Value = "Italie" Then
Me.Italie_img.Visible = True
Else: Me.Italie_img.Visible = False
End If
If Me.ComboBox1.Value = "Royaume Uni" Then
Me.RoyaumeUni_img.Visible = True
Else: Me.RoyaumeUni_img.Visible = False
End If
If Me.ComboBox1.Value = "Allemagne" Then
Me.Allemagne_img.Visible = True
Else: Me.Allemagne_img.Visible = False
End If
If Me.ComboBox1.Value = "Pays De Galle" Then
Me.PaysDeGalle_img.Visible = True
Else: Me.PaysDeGalle_img.Visible = False
End If
If Me.ComboBox1.Value = "Irlande" Then
Me.Irlande_img.Visible = True
Else: Me.Irlande_img.Visible = False
End If
End Sub
Private Sub Close_cmd_Click()
Unload Me
End Sub |
Partager