Hello

I have a database of a library system. I create a report that will display all the overdue books using Visual C#. I have looked at the wizard for creating the reports. But nothing that allows me to do this type of query.

SELECT BookRef, Title, DateDue FROM Book WHERE DateDue < '" + txtCurrentDate.Text + "' ";

But l am not sure how to create a report that will execute this query.

Thanks in advance,

Steve