Private Sub CBOK_Click()
If Len(Me.Nom) = 0 Then
MsgBox "Saisir une durée ! ", vbYes, " simulateur "
Exit Sub
ElseIf IsNumeric(Me.Nom.Value) = False Or Me.Nom.Value < 10 Or Me.Nom.Value > 25 Then
MsgBox "Saisir une valeur comprise entre 10 et 25! ", vbYes, " simulateur "
Exit Sub
End If
Application.ScreenUpdating = False
Application.EnableEvents = False
Range("S6").Value = Format(CInt(Me.Nom))
Unload Me
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub