Hello,
I have a flexgrid I use for a search form.
I can return text values fine but cannot return dates
This works fine
Code:
strsearchService = "Select RO,Vehid,TransDate,Comments from ROHeader where VehID = '" & txtVehicle & "'and SourceID = 23 order by RO DESC"
But when I try to return a date within a range like
Code:
strsearchP1 = "Select RO,Vehid,TransDate,Comments from ROHeader where WHERE [TransDate] BETWEEN #" & txtDateFrom & "# AND #" & txtDateTo & "# order by RO DESC"
I get Hierarchial flexgrid does not support the requested type of data binding. What is causing this?
Thanks for any help