Hello
I am using VB 2008 for creating Win Forms Application.
For one of my combo box I want to select it's item using Item Value of that item.
To do this i tried
dim myVal as integer = 1
ComboBox.SelectedValue = myVal
but this doesn't actually Shows the Selected Item 'Text' in Text Field of ComboBox.
so i want to use something which sets
ComboBox.SelectedIndex = 'some code which finds Index of Value i know'.
SANDEEP