V Vadym Stetsyak Dec 14, 2003 #2 System.Windows.Forms.Button button = new System.Windows.Forms.Button(); button.Click += new EventHandler(btnClick_Handler); private void btnClick(object sender, EventArgs e) { System.Diagnostics.Process process = new System.Diagnostics.Process(); process.Start("myapp.exe"); }
System.Windows.Forms.Button button = new System.Windows.Forms.Button(); button.Click += new EventHandler(btnClick_Handler); private void btnClick(object sender, EventArgs e) { System.Diagnostics.Process process = new System.Diagnostics.Process(); process.Start("myapp.exe"); }
T Tamir Khason Dec 14, 2003 #3 tnx,\ Already got it Vadym Stetsyak said: System.Windows.Forms.Button button = new System.Windows.Forms.Button(); button.Click += new EventHandler(btnClick_Handler); private void btnClick(object sender, EventArgs e) { System.Diagnostics.Process process = new System.Diagnostics.Process(); process.Start("myapp.exe"); } Click to expand...
tnx,\ Already got it Vadym Stetsyak said: System.Windows.Forms.Button button = new System.Windows.Forms.Button(); button.Click += new EventHandler(btnClick_Handler); private void btnClick(object sender, EventArgs e) { System.Diagnostics.Process process = new System.Diagnostics.Process(); process.Start("myapp.exe"); } Click to expand...