23/03/2022, 19:28
Lıke Operatörü
23/03/2022, 22:08
H@K@N
Ekte dosya ekledim.
Ara butonunu textbox ve combobaxlara göre çalıştıramadım. Filtreleme yapmıyor maalesef.
Ara butonunu textbox ve combobaxlara göre çalıştıramadım. Filtreleme yapmıyor maalesef.
24/03/2022, 00:58
berduş
24/03/2022, 01:15
berduş
Private Sub btn_arama_Click()
Dim baglan As New Connection
Dim rs As New Recordset
baglan.Open "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & ThisWorkbook.Path & "\master.accdb;"
strSorgu = "select * from [personel] WHERE personel.id > 0"
If Len(Trim(TextBox3.Value & vbNullString)) > 0 Then
strSorgu = strSorgu & " AND personel.ad='" & TextBox3.Text & "'"
Else
strSorgu = strSorgu & " AND personel.ad LIKE '" & TextBox3.Text & "%'"
End If
rs.Open strSorgu, baglan, adOpenKeyset, adLockPessimistic
ListBox1.ColumnCount = rs.Fields.Count
If rs.RecordCount <> 0 Then ListBox1.Column = rs.GetRows Else ListBox1.Clear
rs.Close
baglan.Close
End Sub
24/03/2022, 15:56
H@K@N
textBox a hakan ismini yazdığımda ismi hakan olanları getiriyor. Ama H,Ha,Hak yazdığımda hiçbir veri gelmiyor. Ad alanına birebir yazmak gerekiyor. Ne yaptıysam olmadı. Başaramadım.
24/03/2022, 16:40
berduş
Sadece başlangıcı mi uyacak?
yerine
yazarak dener misiniz
Kod:
If Len(Trim(TextBox3.Value & vbNullString)) > 0 Then
strSorgu = strSorgu & " AND personel.ad='" & TextBox3.Text & "'"
Else
strSorgu = strSorgu & " AND personel.ad LIKE '" & TextBox3.Text & "%'"
End If
Kod:
If Len(Trim(TextBox3.Value & vbNullString)) > 0 Then strSorgu = strSorgu & " AND personel.ad LIKE '" & textBox3.Text & "%'"