You could make use of a stored procedure for this, with a couple of parameters...
eg;
Code:
CREATE PROCEDURE spGetInformation(@Date1 SMALLDATETIME, @Date2 SMALLDATETIME) AS
/* Return all the information between date1 and date2, sorted by the date fied */
SELECT
*
FROM
TABLENAME
WHERE
CurrentDate BETWEEN @Date1 AND @Date2
ORDER BY
CurrentDate
Run this from Query Analyzer against your database to create the sproc. Then from your VB client or data report, you can use the sproc as your datasource, or make use of the ADODB.Command object.
Bookmarks