views:

308

answers:

1

Hi,

here is my code:

        private class Person
        {
            private string myName;
            private int myValue;

            public Person(string name, int value)
            {
                myName = name; 
                myValue = value;
            }
            public override string ToString()
            {
                return myName;
            }

            public string Name
            {
                get { return myName; }
                set { myName = value; }
            }

            public int Value
            {
                get { return myValue; }
                set { myValue = value; }
            }
        }

I use it to fill a DataGridViewComboBoxCell like this:

myDataGridViewComboBoxCell.ValueMember = "Value";
myDataGridViewComboBoxCell.DisplayMember = "Name";
myDataGridViewComboBoxCell.Items.Add(new Person("blabla", someNumber));

all I want to do now is to select a person:

myDataGridViewComboBoxCell.Value = someNumber;

but keep getting "value is not valid"-error. Any Idea why? When I select an Item in my program I can see the right Value (someNumber) so Display and ValueMember are set correctly...

A: 

Rather than adding to DataGridView.Items, you'll need to set DataGridView.DataSource to a List of Person, and set DataGridView.ValueType = typeof(Person).

Should do it. Although given it's been two months since you asked this, your problem may have lost it's sense of urgency.

Spike