sirkülasyon
Altın Üye
- Katılım
- 10 Temmuz 2012
- Mesajlar
- 2,543
- Excel Vers. ve Dili
- 2021 LTSC TR
Kod:
Sub filtrele()
ListBox1.List = liste
If TextBox9 <> "" Then
For i = ListBox1.ListCount - 1 To 0 Step -1
If Not (ListBox1.List(i, 0) Like "*" & TextBox9.Text & "*") Then
ListBox1.RemoveItem (i)
End If
Next
End If
End Sub
Rica etsem yukarıdaki koda büyük küçük harfe duyarlı olabilmesini ekleyebilir misiniz?
