You should make use of a switch statement to determine the selected index, here is an example :


switch (comboBox1.SelectedIndex)
{
case 0:
//do whatever here if first option selected
break;...