Private Sub CommandButton1_Click() 'Bouton Valider
Dim OOt As OLEObject
If CheckBox1.Value Then
Set OOt = ActiveSheet.OLEObjects.Add(ClassType:="Forms.Image.1", Link:=False, _
DisplayAsIcon:=False, Left:=113.25, Top:=31.5, Width:=144, Height:=114.75)
OOt.Object.Picture = Me.image160.Picture
End If
End Sub