Sub WaiRa()
'
' test3009 Macro
' test réalisé sur les moult pontes du renommé JM, alias Staple1600 ;)
'
Dim sh As Shape, Comm$, Signature$, Commentaires, X As Long
Comm = ActiveSheet.Shapes("Suivi").TextFrame2.TextRange
Signature = "WaiRa" & Format(Date, "\_dd/mm") & " "
Commentaires = Comm & Suivi
Suivi = Chr(13) & "--> " & InputBox("Commentaires, svp!", "Saisie du commentaire", "Saisir ICI votre texte.") & Chr(13) & Signature
X = Len(Commentaires) * 1
Set sh = ActiveSheet.Shapes("Suivi")
sh.TextFrame2.TextRange.InsertAfter _
Suivi
With ActiveSheet.Shapes("Suivi").TextFrame.Characters(Start:=X + Len(Suivi) - Len(Signature), Length:=Len(Signature) + 1).Font
.Name = "Bradley Hand ITC": .Bold = True
.ColorIndex = 33
End With
With ActiveSheet.Shapes("Suivi").TextFrame.Characters(Start:=X + Len(Suivi), Length:=Len(Signature) + 1).Font
.Name = "Calibri Light": .Bold = True
.ColorIndex = 3
End With
End Sub