Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# databound ComboBox : InvalidArgument=Value of '1' is not valid for 'SelectedIndex'

I'm having problems setting the SelectedIndex on a bound ComboBox (on a windows form) that I'm adding to a form at runtime and I suspect there's something odd going on.

When I try this, I get the error "InvalidArgument=Value of '1' is not valid for 'SelectedIndex'."

private void Form1_Load(object sender, EventArgs e)
        {
            List<string> comboBoxList = new List<string>();
            comboBoxList.Add("Apples");
            comboBoxList.Add("Oranges");
            comboBoxList.Add("Pears");

            ComboBox comboBox1 = new ComboBox();
            comboBox1.DataSource = comboBoxList;
            comboBox1.SelectedIndex = 1;
            this.Controls.Add(comboBox1);
        }

However, there is no problem if I add the items to the ComboBox directly, like this:

comboBox1.Add("Apples");

Also, there is no problem if I add the control to the form BEFORE I set the SelectedIndex, like this:

ComboBox comboBox1 = new ComboBox();
this.Controls.Add(comboBox1);
comboBox1.DataSource = comboBoxList;
comboBox1.SelectedIndex = 1;

Can anyone explain why I can't set the selected index from a datasource until after the control is added to the form?

like image 535
Robin Bennett Avatar asked Nov 27 '08 17:11

Robin Bennett


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

Why do we write C?

We write C for Carbon Because in some element the symbol of the element is taken form its first words and Co for Cobalt beacause in some elements the symbol of the element is taken from its first second letters, so that the we don't get confuse.


1 Answers

My understanding is that the databinding is handled by the bindingcontext normaly this is the parent forms bindingcontext. So the datasource binding does not happen until you add the comboBox to the form. You can also get this to work if you set the comboBox's bindingcontext to the forms binding context.

comboBox1.BindingContext = this.BindingContext;
comboBox1.DataSource = comboBoxList;
comboBox1.SelectedIndex = 1;
this.Controls.Add(comboBox1);

BindingContext Class

What is BindingContext

like image 151
Aaron Fischer Avatar answered Sep 30 '22 01:09

Aaron Fischer