Private Sub Image1_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
On Error Resume Next
'Application.ScreenUpdating = False
Dim PauseTime, Start, Finish
PauseTime = 10
Start = Timer
UserForm1.Label1.Caption = Chr(13) & " Ce fichier a été développé par ..." & _
Chr(13) & Chr(13) & " Il aura fallu pour y arriver :" & _
Chr(13) & Chr(13) & " environ 1 mois de travail (de mi-avril à fin mai 2023)," & _
Chr(13) & " + d'une dizaine de macros et formulaires," & _
Chr(13) & " + de 50 formules différentes," & _
Chr(13) & " + de 4.000 lignes de codes de programmations en VB." & _
Chr(13) & Chr(13) & " Pour toutes questions/suggestions," & _
Chr(13) & " merci d'envoyer un mail à :" & _
Chr(13) & Chr(13) & " on_verra_plus_tard@pas_demain.be"
UserForm1.Show
Do While Timer < (Start + PauseTime)
DoEvents
If Format(TimeSerial(0, 0, (Start + 10) - Timer), "s") > 1 Then
UserForm1.Caption = "A propos (fermeture dans " & Format(TimeSerial(0, 0, (Start + 10) - Timer), "s") & " secondes)"
Else
UserForm1.Caption = "A propos (fermeture dans " & Format(TimeSerial(0, 0, (Start + 10) - Timer), "s") & " seconde)"
UserForm1.Hide
End If
Loop
Start = Timer + 1
Finish = Timer
UserForm1.Hide
Application.ScreenUpdating = True
End Sub