0
if (comboBox1.Text == "Asus";
System.Diagnostics.Process.Start("http://www.asus.com");

This is basically what I am trying to do, but it seems so hard to find some good combo box tutorials! I am doing this with a windows form (not WPF). Thank you for your help.

DDJ
  • 807
  • 5
  • 13
  • 31

1 Answers1

2

Try to fix the syntax error

if (comboBox1.Text == "Asus")
  System.Diagnostics.Process.Start("http://www.asus.com");
Roman Marusyk
  • 23,328
  • 24
  • 73
  • 116