how to add value to combobox item

后端 未结 6 679
半阙折子戏
半阙折子戏 2020-12-14 04:47

How can I add data value of each item to combobox in Visual Basic 2010?

Like html drop-down box.

Or is there anyway to add values to each item ?

I am

6条回答
  •  执念已碎
    2020-12-14 05:17

    Now you can use insert method instead add

    ' Visual Basic
    CheckedListBox1.Items.Insert(0, "Copenhagen")
    

提交回复
热议问题