Adding itens into a combobox

  • Thread starter Thread starter Marco Roberto
  • Start date Start date
M

Marco Roberto

Hi,

is there anyway to add itens into a combobox after this
control be bound with a dataset?

Regards,

Marco
 
Hello Marco,

the current Windows Forms ComboBox control does not support adding items to
it when it is data bound. You could work around this by either adding more
items in the DataSet or populating the ComboBox control manually from the
values in the DataSet or elsewhere (which is what databinding normally does
for you).

Antoine
Microsoft Visual Basic .NET

This reply is provided AS IS, without warranty (express or implied).


--------------------
 
Back
Top