![[Resim: access_.jpg]](http://www.simurgbilisim.com/access/access_.jpg)
Private Sub TextBox9_Updated(Code As Integer)
Dim txtSearchString As Variant
Dim strSQL As String
txtSearchString = Me![TextBox9]
If Not IsNull(Me![TextBox9]) Then
strSQL = "SELECT * FROM kalip "
strSQL = strSQL & "WHERE WHERE ((kalip.kalip_no)Like '" & txtSearchString & "*') "
End If
Me!Liste0.RowSource = strSQL
End Sub