Private Sub UserForm_Click()
Dim Im As Integer
Im = Range("C9")
If Im = 1 Then
Image1.Visible = True
Image2.Visible = False
Else
If Im = 2 Then
Image1.Visible = False
Image2.Visible = True
End If
End If
Me.Image1.Left = [Feuil1!C6]
Me.Image1.Top = [Feuil1!C5]
Me.Image1.Height = [Feuil1!C7]
Me.Image1.Width = [Feuil1!C8]
Me.Image2.Left = [Feuil1!C6]
Me.Image2.Top = [Feuil1!C5]
Me.Image2.Height = [Feuil1!C7]
Me.Image2.Width = [Feuil1!C8]
End Sub