what i need to know is how so display ONLY the records from
date 02/25/00 to date 02/26/00
using the MSHFlexGrid
Printable View
what i need to know is how so display ONLY the records from
date 02/25/00 to date 02/26/00
using the MSHFlexGrid
Create a query that will take only the records you want and bind the MSHFlexGrid control to that query.
Query Example:
SELECT * FROM Table1 WHERE Date1>=#25/01/2000# And Date1<=#26/01/2000#
Good Luck!!!