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'")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top