Onlylonely
Registered User.
- Local time
 - Today, 20:54
 
- Joined
 - Jan 18, 2017
 
- Messages
 - 43
 
Hi, 
Am having issue on search function on the listbox.
Anyone can advise?
	
	
	
		
 Am having issue on search function on the listbox.
Anyone can advise?
		Code:
	
	
	Private Sub txtfind_Change()
        
        Dim strSource As String
        strSource = "SELECT FirstName" & _
         "FROM Guests " & _
         "Where FirstName Like '*" & Me.txtfind.Text & "*' "
         
        Me.List0.RowSource = strSource
End Sub