Sub MaMacro(x As String)
Dim c As Range
Set c = Feuil1.[A:A].Find(x, , xlValues, xlWhole)
On Error Resume Next
Application.Goto Evaluate(c.Hyperlinks(1).SubAddress)
If Err Then MsgBox IIf(x = "", "TextBox vide !", "Aucun lien ne conduit à la feuille '" & x & "'...")
End Sub
Private Sub TextBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
MaMacro TextBox1
End Sub
Private Sub TextBox2_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
MaMacro TextBox2
End Sub