Manually Enter Items in Combo
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hello All I want to manually enter items in the combox as: cbo.Items.Add("Item1") cbo.Items.Add("Item2") How i can add ValueMember Field data manually? As we have an option in VB6 as: cbo.AddItem ("Item1") cbo.ItemData(cbo.NewIndex) = 1 'How this can be done in VB.Net? :confused: cbo.AddItem ("Item2") cbo.ItemData(cbo.NewIndex) = 2 'How this can be done in VB.Net?:confused: Regards