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 505051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:33:32+00:00 2026-05-13T06:33:32+00:00

I have a ComboBox with its elements loaded from a sqlserver table (groups). I

  • 0

I have a ComboBox with its elements loaded from a sqlserver table (groups).
I also have a DataGridView, linked to another table (users).

When I load the form, the combo is filled with groups, and the datagridview is filled with users (all the users)

1) I want to be able to select a group from the ComboBox (dropDownList), and then to refresh the DataGridView with the users that belong to that selected group…

2) And How can I show a join relation in the DataGridView? Let’s say I want to show the groupName in the last column of the each user…

PS:

I have an xsd Dataset created in my VS2008 project with its
corresponding tableAdapters generated
(groupTableAdapter, userTableAdapter)
and some sql-methods added to each
adapter

  • 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-05-13T06:33:32+00:00Added an answer on May 13, 2026 at 6:33 am

    1) Set up a BindingSource for both tables.

    BindingSource bsGroup = new BindingSource();
    BindingSource bsUser  = new BindingSource();
    bsGroup.DataSource = MyDataSet.Tables["Group"];
    bsUser.DataSource = MyDataSet.Tables["User"];
    

    2) Set up your Combo and Grid DataSources.

    MyCombo.DataSource    = bsGroup;
    MyCombo.DisplayMember = "GroupName"; // whatever your ColumnName is
    MyCombo.ValueMember   = "GroupID";
    MyGrid.DataSource = bsUser;
    

    3) Set up a SelectedIndexChanged event for the Combo and use it to change the filter on the bsUser bindingsource.

    MyCombo.SelectedIndexChanged += new System.EventHandler(MyCombo_SelectedIndexChanged);
    private void MyCombo_SelectedIndexChanged(object sender, System.EventArgs e)
    {
        // this will depend on what your column names are, obviously
        string filter = string.Format("GroupID = {0}", MyCombo.SelectedValue);
        bsUser.Filter = filter;
    }
    

    This worked fine… taken from here.

    (Yes, I posted this also on MSDN because I was in a hurry)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ComboBox and its items source is an SQL table. I would
I have a ComboBox with its DataSource set to an instance of a DataTable.
I have a user control with a combobox, and so I can edit its
I have a combobox in a WPF Window, it is filled with usernames from
i have a combobox and its on a narrow part of a webpage. below
I have a ComboBox on a form, and its default height is 21. How
I have a ComboBox and its ComboBoxItem are all generated in run time (programmatically).
I have a comboBox that has a datatrigger that set its SelectedIndex based on
I have a ComboBox, and i want to change its look when the ItemsSource
I've created a control derived from ComboBox, and wish to unit test its behaviour.

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.