Public Sub sFilterListBox(strFilterValue as string)
Dim strSQL as string
strSQL = "SELECT tblCustomers.CustomerID, tblCustomers.FName,
tblCustomers.LName, tblCustomers.City, tblCustomers.Phone " & _
"FROM tblCustomers WHERE tblCustomers" & Me.cmbField.Value & " LIKE " & strFilterValue & ";"
Me.lstData.RowSource = strSQL
Me.lstDate.Requery
End Sub