In VB6.0 in Combobox , you can use the ItemData to assign a key to the combo box like
With cbobox1
.AddItem "2D Bar"
.ItemData(Chart TypeComboBox.Ne wIndex) = VtChChartType2d Bar
end with
in vb.net , i need to assign a key to the combo box how to do that ?
Thanks,
With cbobox1
.AddItem "2D Bar"
.ItemData(Chart TypeComboBox.Ne wIndex) = VtChChartType2d Bar
end with
in vb.net , i need to assign a key to the combo box how to do that ?
Thanks,
Comment