Filtering Data in bound grid

  • Thread starter Thread starter Mike Stephens
  • Start date Start date
M

Mike Stephens

I have a grid that is bound to a DataSet. I would like to filter some
records. I am using the following code:

DsOrchards.Tables(0).Select("Managed = 0")

But as soon as the code runs no records are displayed. Can someone please
point out what I'm doing wrong.

Regards,
Mike
 
If you wrap it in single quotes, so you still get the same behavior?
.....Select("Managed = '0'")
 
Back
Top