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

Ask A Question

Stats

  • Questions 498k
  • Answers 498k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer helper_method is useful when the functionality is something that's used… May 16, 2026 at 12:19 pm
  • Editorial Team
    Editorial Team added an answer Make sure you are not using move_uploaded_file() before calling the… May 16, 2026 at 12:19 pm
  • Editorial Team
    Editorial Team added an answer I take it you're using strtotime. In that case, why… May 16, 2026 at 12:19 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I've created a control derived from ComboBox, and wish to unit test its behaviour.
I have a dropdown box (Combobox). Everytime I make a new selection a table
I have a ComboBox that has its ItemsSource bound to a static List<CustomSettings> of
I have two list that I load when my app starts. The first one
I have a combobox with a width set to 100%. However, when one of
I have a combobox on a window in wpf and i am trying to
I have a ComboBox like this: <ComboBox IsEditable=True ItemsSource={Binding SelectableValues} SelectedValue={Binding SelectedValue} /> SelectableValues
I have a WPF combobox <ComboBox Name=cmbExpression IsEditable=True/> Now I have written some text
I have this code: <ComboBox Width=100 ItemsSource={Binding FontList} x:Name=fontComboFast> <ComboBox.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel /> </ItemsPanelTemplate>
I have a WPF UserControl that contains a ComboBox . I need to attach

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.