You can Search particular word from any of the Column by using Searc string like this:
Sql="Select * FROM YourDatabaseName WHERE ColumntoSearch like '" & Trim(txtSearchTextBox.Text) & "%' ORDER BY toSearchColumnName"
So, the above code will Search whatever you write within the textbox 'txtSearchTextBox.Text'.
I hope this will give you an idea