Hi,
What you need to do is to build your database, after its ready start working on your program.
When you start working on your program, put on your form two textbox and two buttons (when you have different search engine its better to work with different controls for each engine).
Give the textboxs and the buttons names that defined them,
after that press double click on the first button, it will create for you the event method to be fired when the user will press the button, when you have this event method write the code inside.
The code needs to be somthing like that if you using SQL server database:
"SELECT * FROM BOOK_DB WHERE BookName =" + nameOfNameTextBox.Text.ToString()
or
"SELECT * FROM BOOK_DB WHERE BookDate =" + nameOfDateTextBox.Text.ToString()
If not and you dont know how to build your select function for yours database so ask us.
I assum that you know where the querys need to go but if you dont so ask and we will help you.
Of course its just en example and you need to change the query to your needs, but as i said above if you need any help on that two, so ask and we will help you!