Please could somebody give me the basic syntax/HELP to be able to search through a DB table... I have the record fields on the form and would like all fields to change to the record that matches the search ID criteria... I have this so far...
strSearch = InputBox("Enter the record ID that you would like to search for...", "Search by Record ID"
FindString = "Select * From pic_table " & _
"WHERE [ID] LIKE '" & strSearch & "%' "
??????????? & [FindString]
...And ideas? Thanks
strSearch = InputBox("Enter the record ID that you would like to search for...", "Search by Record ID"

FindString = "Select * From pic_table " & _
"WHERE [ID] LIKE '" & strSearch & "%' "
??????????? & [FindString]
...And ideas? Thanks