Dim Temps As Variant
Public Sub Clign()
'Programmation de l'évènement toutes les secondes
Temps = Now + TimeValue("00:00:01")
Application.OnTime Temps, "Clign"
'Affiche l'alerte ou la fait disparaître (alternativement)
With ThisWorkbook
With .Sheets("VentilationTTS").Range("C24")
.Font.ColorIndex = IIf(.Font.ColorIndex = 1, 3, 1) '2, 3, 2)
End With
End With
End Sub
Public Sub StopClign()
On Error Resume Next
'Stoppe la gestion de l'évènement OnTime
Application.OnTime Temps, "Clign", , False
On Error GoTo 0
'Cache l'alerte
With ThisWorkbook
'Texte
.Sheets("VentilationTTS").Range("C24").Font.ColorIndex = 3
End With
End Sub