vote up 0 vote down star

hi, is there any way to add values in the collection of combobox (in datagridview cell) programatically?

flag

74% accept rate
2  
yes! ... how about googling and showing us your attempt? – Mitch Wheat Jul 11 at 9:04
This is a duplicate of: stackoverflow.com/questions/1113135/… – Francis B. Jul 11 at 14:11

2 Answers

vote up 1 vote down

You really need to give us more information here. At its simplest, you can just access the combobox in the datagridview directly from within code, and add items programatically via the combobox's .Items property:

 this.comboBox1.Items.Add("Rob");
 this.comboBox1.Items.Add("srinivas");

However, if you are asking the question, I am guessing there is more to it that that. Please provide a fuller description if this is not what you meant.

link|flag
dudu im asking abt how to add to a cell that is a combobox type in datagridview. – srinivas Jul 11 at 9:54
vote up 0 vote down

The easiest way is to use the "Add" method of your ComboBox:

// Add item "test" to ComboBox with name comboBox1
comboBox1.Items.Add("test");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.