Private Sub UserForm_Terminate()
H = Val(CbHeure): M = Val(CbMinute): If H = 24 Then M = 0
T1 = Now - Int(Now) ' Temps maintenant
T2 = (H + M / 60) / 24 ' Temps entré
If T1 > T2 Then
H = 1+Hour(Now): M = 0 ' T entré < T maintenant alors T entré =1 T maintenant avec Min=0
If H > 20 Then H = 20
End If
On Error Resume Next
'extraire seulement la date> JJ/MM/AAAA puis rajoute HH:MM <= MODIF Roland
ActiveCell = Format(Left(ActiveCell, 10), "dd mm yyyy ") & Format(H, "0#") & ":" & Format(M, "0#")
Unload Me
End Sub