Hi guys. I have this ComboBox which I made :
I want to reference each item from the combo to a win form .
So far Ive this :
string comboSelectedValue = comboBox1.SelectedItem.ToString();
MessageBox.Show(comboSelectedValue);
It does display of course the value Ive chosen but thats not what I want :P
Appreciate your help