Sub Duplicata()
' Excel-lent le 25/09/07
Dim Réponse As Integer
Réponse = MsgBox("Il faut mettre le filigrame 'DUPLICATA' ?", vbYesNo)
If Réponse = 6 Then
ActiveSheet.Shapes.AddLabel(msoTextOrientation[B][COLOR="Blue"]Horizontal[/COLOR][/B], 92.25, 327#, 0# _
, 0#).Select
Selection.ShapeRange(1).TextFrame.AutoSize = msoTrue
Selection.Characters.Text = "D U P L I C A T A"
Selection.ShapeRange.ZOrder msoSendToBack
With Selection.Characters(Start:=1, Length:=17).Font
.FontStyle = "Gras"
.Size = 36
.ColorIndex = 15
End With
End If
Range("A1").Select
End Sub