Hello.
I am trying to filter a multi column iistbox using a textbox. The way i had it before worked but it only displays one column, however i need it to display three columns. i had it to where it would display just the Task Title column, now I need
it to display the Task type title and Task Number title.
Thanks for any help in advance
This is my Code -
Private Sub txtSearchTasks_Change()
Dim StrSource As String
StrSource = "SELECT Task_Type.Title, Training_Tasks.Title, Training_Tasks.Task_Number" & _
"FROM Task_Type INNER JOIN Training_Tasks ON Task_Type.ID = Training_Tasks.Task_Type.Value;" & _
"WHERE Training_Tasks.Task Like '*" & Me.txtSearchTasks.Text & "*'"
Me.lstIndvidualTasks.RowSource = StrSource
End Sub
olu Solaru