vote up 1 vote down star

I am databinding a combobox to a DataSet, however I want to insert a single item at the top for "None".

Doing:

 combobox.Items.Insert(0,"None");

Doesn't work, as the combobox is now expecting a DataRowView, however DataRowView doesn't have a public constructor, so I can't fake it that way.

Any advice? I'm sure this is a well solved problem.

flag

54% accept rate

1 Answer

vote up 3 vote down check

Insert to the object you are databinding to rather than to the combobox. Good example below.

http://social.msdn.microsoft.com/forums/en-US/winforms/thread/70785e67-5c27-428f-ac79-e45c8c70c3e8/

link|flag

Your Answer

Get an OpenID
or

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