How do I start a process, such as launching a URL when the user clicks a button?
To start Microsoft Word for example, use this code:
private void button1_Click(object sender, EventArgs e) { string ProgramName = "winword.exe"; Process.Start(ProgramName); }
For more explanations, check out this link.