Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8216265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:04:08+00:00 2026-06-07T12:04:08+00:00

I know there are a good few threads on this topic but i have

  • 0

I know there are a good few threads on this topic but i have tried everything and still no luck filtering my datagridview. I am trying to filter the rows of a datagridview based on the value a user inputs in a text field. The datagridviews datasource is set du the datasource provided below.

So here is the code i am using. i get no errors, the datagridview simply does not change.
ManufacturerService.GettAll returns a List of Manufacturer, i convert it to a bindinglist to

bsManufacturers.DataSource = new BindingList<Manufacturer>(ManufacturerService.GetAll(_ctx));

On the textchanged event of the textbox this code runs. i have checked with breakpoints and so on. the code is executed ant the filter string is correct.

private void FilterData(string str)
{
    bsManufacturers.Filter = string.Format("Name like '%{0}%'", str);
    dgvManufacturers.Refresh();
}

Any help? or atleast an explanation of why this does not work? I have been working on this for a good few hours and just cant seem to find an anwser anywhere

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T12:04:09+00:00Added an answer on June 7, 2026 at 12:04 pm

    I solved this problem by using this project:
    http://blw.sourceforge.net/

    Personally i think there should be a better way of doing this but it’s working now and i guess that i will have to be happy with “good enough” for now.

    Here is the working code. The important parts anyway.

    private void PopulateDataGridView()
    {
         blvManufacturers = new BindingListView<Manufacturer>(ManufacturerService.GetAll(_ctx));
        _bsManufacturers = new BindingSource { DataSource = _blvManufacturers};
        dgvManufacturers.DataSource = _bsManufacturers;         
    }
    
    private void FilterData(string str)
    {
        // Change the filter of the view.
          blvManufacturers.ApplyFilter(
            delegate(Manufacturer manu)
            {
                // uses ToLower() to ignore case of text.
                return manu.Name.ToLower().Contains(str.ToLower());
            }
        );           
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know there's already a lot of questions on this topic but I might
I know there's tons of threads about this. And I read a few of
I know there are a few questions about this but i just cant seem
I know there are a few ways to do this. But I want to
I know there is a question about that, but there isn't any good answer(for
What's a good Shopping Cart possibly free I know there oscommerce, xcart etc but
I know there is ongoing work for in this regards but what is the
I know there's an easy way of doing this, but my recursion abilities are
I know there have been a lot of questions of this, however those were
I know there are quite a few text-to-array questions out there, but I am

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.