I am working on a VB.net application for our billing database. It's basically just an interface that management can use to pull information from the database without having to search through the actual tables.
The database is in MS Access. Here's what I'm having trouble with...
I have a query set up like SELECT Task FROM Hours WHERE Customer = 298 AND hours.date = #4/3/2008#
So this returns all work entries for Customer ID #32 on the given date.
What they want me to add now is a textbox on the form where they can enter a keyword to filter the work entry returns. So for example, if they enter "cake" into the text field, only the work entries for the given customer on the given date that contain the word "cake" in the task column will be returned.
I'm not a VB.net expert by any means and I just have no idea where to start. I tried to google it but gave up after wading through way too many unhelpful articles.
The database is in MS Access. Here's what I'm having trouble with...
I have a query set up like SELECT Task FROM Hours WHERE Customer = 298 AND hours.date = #4/3/2008#
So this returns all work entries for Customer ID #32 on the given date.
What they want me to add now is a textbox on the form where they can enter a keyword to filter the work entry returns. So for example, if they enter "cake" into the text field, only the work entries for the given customer on the given date that contain the word "cake" in the task column will be returned.
I'm not a VB.net expert by any means and I just have no idea where to start. I tried to google it but gave up after wading through way too many unhelpful articles.