Multiple ComboBox with single DataSource

J.P Masangcay

I have 2 combo boxes that are tied up to a single binding source in a dataset. When I select an item in one of the combo boxes, they both change. I don't have code in the combobox themselves but I do have the dataset fill:

this.cLIENT_BranchesTableAdapter.Fill(this.gcDataSet.CLIENT_Branches);

What could be causing this?

LarsTech

Give each ComboBox their own BindingSource:

comboBox1.DataSource = new BindingSource(source, string.Empty);
comboBox2.DataSource = new BindingSource(source, string.Empty);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Default value DataSource in ComboBox C#

From Dev

Query Result as Datasource for ComboBox (VB.Net)

From Dev

ComboBox remembers SelectedIndex after changing DataSource

From Dev

Grails multiple datasource with external config

From Dev

Dictionary as a Datasource for a ComboBox

From Dev

How to add multiple items to a combobox using single line of code?

From Dev

the mechanic beneath combobox with same datasource

From Dev

spring @sqlgroup with multiple datasource

From Dev

Refreshing winform ComboBox datasource on closing a dialog form

From Dev

Sitecore Multiple nodes for rendering datasource

From Dev

Define optional (multiple) datasource in Grails

From Dev

Using a Dictionary as a combobox DataSource

From Dev

How to refresh/reload kendo comboBox dataSource with AngularJs?

From Dev

Set combobox with long datasource

From Dev

combobox datasource binding affects other instance of combobox set by same data

From Dev

Bind multiple ComboBox to a single List - Issue: When I choose an item, all combo boxes change

From Dev

Set DisplayMember and ValueMember on ComboBox without DataSource

From Dev

Setting the value of a combobox with datasource in ListView

From Dev

SSRS single datasource impact

From Dev

Kendo DataSource $expand on multiple fields

From Dev

Multiple DataSource instances

From Dev

add record to combobox binded to datasource

From Dev

How to refresh/reload kendo comboBox dataSource with AngularJs?

From Dev

Combobox options not changing when datasource updated

From Dev

multiple datasource with spring boot jpa

From Dev

Error when using PowerShell to add DataSource to ComboBox

From Dev

Unbind datasource after populating combobox

From Dev

Multiple datasource configuration issue

From Dev

How to handle single SelectedIndexChanged event to multiple ComboBox using C# WinForms?

Related Related

  1. 1

    Default value DataSource in ComboBox C#

  2. 2

    Query Result as Datasource for ComboBox (VB.Net)

  3. 3

    ComboBox remembers SelectedIndex after changing DataSource

  4. 4

    Grails multiple datasource with external config

  5. 5

    Dictionary as a Datasource for a ComboBox

  6. 6

    How to add multiple items to a combobox using single line of code?

  7. 7

    the mechanic beneath combobox with same datasource

  8. 8

    spring @sqlgroup with multiple datasource

  9. 9

    Refreshing winform ComboBox datasource on closing a dialog form

  10. 10

    Sitecore Multiple nodes for rendering datasource

  11. 11

    Define optional (multiple) datasource in Grails

  12. 12

    Using a Dictionary as a combobox DataSource

  13. 13

    How to refresh/reload kendo comboBox dataSource with AngularJs?

  14. 14

    Set combobox with long datasource

  15. 15

    combobox datasource binding affects other instance of combobox set by same data

  16. 16

    Bind multiple ComboBox to a single List - Issue: When I choose an item, all combo boxes change

  17. 17

    Set DisplayMember and ValueMember on ComboBox without DataSource

  18. 18

    Setting the value of a combobox with datasource in ListView

  19. 19

    SSRS single datasource impact

  20. 20

    Kendo DataSource $expand on multiple fields

  21. 21

    Multiple DataSource instances

  22. 22

    add record to combobox binded to datasource

  23. 23

    How to refresh/reload kendo comboBox dataSource with AngularJs?

  24. 24

    Combobox options not changing when datasource updated

  25. 25

    multiple datasource with spring boot jpa

  26. 26

    Error when using PowerShell to add DataSource to ComboBox

  27. 27

    Unbind datasource after populating combobox

  28. 28

    Multiple datasource configuration issue

  29. 29

    How to handle single SelectedIndexChanged event to multiple ComboBox using C# WinForms?

HotTag

Archive