If you have only simple strings as items in comboBOx then you can do:
//in combobox_selectedIndexChanged event:
if(comboBox1.SelectedItem.ToString() == "item 1")
new Form2().Show();
else if(comboBox1.SelectedItem.ToString() == "item 2")
new Form3().Show();
else if(comboBox1.SelectedItem.ToString() == "item 3")
new Form4().Show();
Mitja Bonca
Nearly a Posting Maven
2,485 posts since May 2009
Reputation Points: 641
Solved Threads: 474