PDA

Click to See Complete Forum and Search --> : Help with MSHFlexGrid


Gandor
Feb 27th, 2000, 11:19 AM
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

Forest Dragon
Mar 3rd, 2000, 01:09 AM
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!!!