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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:15:47+00:00 2026-05-28T00:15:47+00:00

I am developing a small desktop app, and there are several drop-down lists (combobox-es)

  • 0

I am developing a small desktop app, and there are several drop-down lists (combobox-es) on my form. I populate a list of strings, which will be used as data source for all of them. Here is example from my Form.cs class:

List<string> datasource = new List<string>();
datasource.Add("string 1");
datasource.Add("string 2");

Then I set this list as a data source to several comboboxes:

 cmbDataType1.DataSource = datasource;
 cmbDataType2.DataSource = datasource;

This all happens in same method, which is called from the Form constructor.
Here is the strange part: after I change a selected value in one of them, the same value will be set in the other one. There are no SelectedIndexChange events set. I have messed up somewhere, but I cant put my finger where…

  • 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-28T00:15:48+00:00Added an answer on May 28, 2026 at 12:15 am

    The behavior that you see is by design. When you bind the same object as the data source for multiple controls, all the controls share the same binding source.

    If you explicitly assign a new binding source to each control, even while using the same data source, all controls will be unbound and will act independent of each other:

    cmbDataType1.DataSource = new BindingSource(datasource, "");
    cmbDataType2.DataSource = new BindingSource(datasource, "");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing a small application which lists the contents from files of a
I am developing one small app in which i have multiple NSURLConnection.I have created
I am about to start developing a small Java desktop app. The app is
I am developing a WPF desktop app for a small business. It will have
I am developing a small desktop application in Net beans. I drag and drop
I'm developing small FTP upload app. for mac (10.6 if it matters) Have problem
I am developing a small web app project (ColdFusion) and I am trying to
I am developing a small business application which uses Sqlserver 2005 database. Platform: .Net
I am developing a small desktop application in VB.NET. It has to be formal
I'm developing a small app designed to embed HTML + JavaScript (JavaScript manages the

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.