using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; namespace DarkWynter.App { public partial class DarkWynter_WebLauncherControl : UserControl { public DarkWynter_WebLauncherControl() { InitializeComponent(); this.Dock = DockStyle.Fill; this.buttonTheDarkWynterProject.Size = new System.Drawing.Size(this.Width, this.Height); } private void buttonTheDarkWynterProject_Click(object sender, EventArgs e) { System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.EnableRaisingEvents = false; // Launch Website proc.StartInfo.FileName = "iexplore"; proc.StartInfo.Arguments = "http://www.darkwynter.com/"; // Launch Word File //proc.StartInfo.FileName = "winword"; //proc.StartInfo.Arguments = "C:\\Dotnetstuff\\TestWordDoc.doc"; proc.Start(); } } }