Hello!
My grid isn't filtering. I am trying to filter my grid by date. What is happening is when the button is clicked the filter returns a "No Find" message.
The xdate variable is a date that is in the bdate field and bdate is a DATE field. If I use seek by itself it does find the xdate.
Any ideas?
Thanks!
CJ
Below is my code for my grid filter:
xdate = '09/02/2003'
ydate = '09/02/03'
SELECT book
SET ORDER TO WIZARD_1
SEEK xdate
IF FOUND()
SET FILTER TO book.bdate = xdate
GO TOP
SET MESSAGE TO "Top of the Book Grid"
ENDIF
My grid isn't filtering. I am trying to filter my grid by date. What is happening is when the button is clicked the filter returns a "No Find" message.
The xdate variable is a date that is in the bdate field and bdate is a DATE field. If I use seek by itself it does find the xdate.
Any ideas?
Thanks!
CJ
Below is my code for my grid filter:
xdate = '09/02/2003'
ydate = '09/02/03'
SELECT book
SET ORDER TO WIZARD_1
SEEK xdate
IF FOUND()
SET FILTER TO book.bdate = xdate
GO TOP
SET MESSAGE TO "Top of the Book Grid"
ENDIF