Private Sub CommandButton3_Click() 'Recherche
Dim i As Variant
TextBox3 = "": TextBox4 = "": TextBox5 = "" 'RAZ'
With Sheets("donneesREFLEX").[A1].CurrentRegion
i = Application.Match(TextBox1 & " " & TextBox2, Evaluate(.Columns(1).Address & "&"" ""&" & .Columns(4).Address), 0)
If IsNumeric(i) Then
TextBox3 = .Cells(i, 2)
TextBox4 = .Cells(i, 5)
TextBox5 = .Cells(i, 11)
End If
End With
End Sub