
Originally Posted by
RJ1969
1. I can double click it and I can use a down arrow then press enter.
2. I have a textbox1 where I type "app" for applesauce
3. and it will filter whatever that has "app" from the listbox1
4. but when I press tab it does not highlight the item when I tab it.
To 2. and 3.
a) simply typing any text in 'textbox' does not filter 'listboxes', you must have suitable code
To 4.
a) if you have one, then if you type something in 'textbox' and the list in 'listbox' will be filtered, what should be highlighted there ?
b) if in 'textbox' you have typed e.g. "appl" and on the filtered list you have: "applesauce", "application", "apple", etc. and you press tab key, how does code know that what you want to highlight ... "appl" <==> "applesauce", "application", "apple" ?
Please provide your sample file.
Additionally:
If KeyCode = 13 And ListBox1.ListIndex - 1 Then
1. "If KeyCode = 13" <==> if you press enter
2. "ListBox1.ListIndex - 1" <==> "ListBox1.ListIndex" it is a number, Long type, if equal "3" then "ListBox1.ListIndex - 1" = "2", and "2" is always TRUE. This is needless/superfluous in this place.
TextBox1.Value = ListBox1.List(ListIndex)
Should be
TextBox1.Value = ListBox1.List(ListBox1.ListIndex)
Sorry for bad english
And yet sample code to filtering the list from field 'textbox':
Private Sub TextBox1_Change()
Call Filter_List(UserForm1.TextBox1.Text)
End Sub
Sub Filter_List(some_text As String)
Dim i As Long, j As Long
Dim temporary_art_table() As Variant
With UserForm1
If some_text <> "" Then
.ListBox1.Clear
For i = 1 To UBound(art_table, 1)
If LCase(art_table(i, 1)) Like "*" & LCase(some_text) & "*" Then
j = j + 1
ReDim Preserve temporary_art_table(1, j)
temporary_art_table(1, j) = art_table(i, 1)
End If
Next
If j > 0 Then
.ListBox1.Column() = temporary_art_table
End If
End If
End With
End Sub
Bookmarks