1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
Dim strValue As String
Dim nbEnter As Long
Private Sub TextBox1_Change()
If TextBox1 = "" Then
Range("B3:B40").Interior.ColorIndex = 43
Range("B3").Select
nbEnter = 0
strValue = ""
End If
End Sub
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
Dim bTrouve As Boolean
Dim nbValeurTrouvee() As Long
If KeyCode = 13 Then
If strValue = TextBox1.Value Then
nbEnter = nbEnter + 1
Else
nbEnter = 1
strValue = TextBox1.Value
End If
Application.ScreenUpdating = False
bTrouve = False
Range("B3:B40").Interior.ColorIndex = 2
ReDim nbValeurTrouvee(0)
For ligne = 3 To 40
If Cells(ligne, 2) Like "*" & TextBox1 & "*" Then
Cells(ligne, 2).Interior.ColorIndex = 43
ReDim Preserve nbValeurTrouvee(UBound(nbValeurTrouvee) + 1)
nbValeurTrouvee(UBound(nbValeurTrouvee)) = ligne
ActiveWindow.ScrollRow = Selection.Row / 2
bTrouve = True
End If
Next
If Not bTrouve Then
MsgBox ("Aucun résultat ne correspond à votre recherche !"), vbOKOnly + vbCritical, "RECHERCHE INTROUVABLE"
Range("B3").Select
Else
ActiveSheet.Cells(nbValeurTrouvee(Application.Min(nbEnter, UBound(nbValeurTrouvee))), 2).Select
End If
End If
End Sub |
Partager