DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub TextBox1_Change()
Dim bak As Integer
For bak = 0 To ListBox1.ListCount - 1
If Left(ListBox1.List(bak), Len(TextBox1.Text)) = TextBox1.Text Then
ListBox1.ListIndex = bak
Exit Sub
End If
Next
End Sub
Private Sub TextBox1_Change()
Dim bak As Integer
Dim KolonNo As Integer
KolonNo = 0
If TextBox1.Text = "" Then
ListBox1.ListIndex = -1
Exit Sub
End If
For bak = 0 To ListBox1.ListCount - 1
If Left(ListBox1.List(bak, KolonNo), Len(TextBox1)) = TextBox1.Text Then
ListBox1.ListIndex = bak
Exit Sub
End If
Next
ListBox1.ListIndex = -1
End Sub