Const Attente1 = 2 / 86400 '2 secondes
Const Attente2 = 1 / 86400 '1 seconde
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [A17:A26]) Is Nothing Then Exit Sub
Cancel = True
With Sheets("Coller ici")
.Cells.Delete 'RAZ
Application.Goto .[A1]
End With
ThisWorkbook.FollowHyperlink Target(1, 2).Hyperlinks(1).Address
Application.OnTime Now + Attente1, Me.CodeName & ".Copier"
End Sub
Sub Copier()
CreateObject("WScript.Shell").SendKeys "^a^c" 'touches Ctrl+A et Ctrl+C
Application.OnTime Now + Attente2, Me.CodeName & ".Coller"
End Sub
Sub Coller()
On Error Resume Next
With Sheets("Coller ici")
.Paste 'coller
.DrawingObjects.Delete 'supprime les objets
.Rows(.Cells.Find("Annonces et diffusion", , xlValues).Row & ":" & .Rows.Count).Delete
.Rows("1:" & .Cells.Find("Services assurés et coûts").Row - 1).Delete
.Columns(1).ColumnWidth = 255
.Rows.AutoFit
Application.Goto .[A1], True 'cadrage
End With
AppActivate Application.Caption 'active Excel
End Sub