I have a form with five radio buttons.
When I choose e.g. Name, I write the name I want to search for in a textbox and I click on my button Search.
A search is made in my database, however, the search returns ALL posts in the database into my listbox.

Q1:How can I make the search for the specific word in the textbox and show the result in the listbox?

Q2:How do I get more than just the Name in the listbox? I want e.g. Name, Adress AND phone number.

Code for the search is:
dtData1.Recordset.Findfirst "Name='" & strSearchString & "'"

/The_spike