I need to link or call a exe file(or form) if i click the button.How is the method or coding.Please help me i'm in thouble now.TQ very much
private void button1_Click(object sender, EventArgs e)
{
???????
}
The exe file name is connection....Tq
Loading
kanagarajah thiagarajahPosted Mar 27, 2007, 7:25 AM
kanagarajah thiagarajahPosted Mar 27, 2007, 7:25 AM
Mike GoldPosted Mar 20, 2007, 10:56 PM
The way to call an Exe file from your button handler is with the System.Diagnostics.Process class
System.Diagnostics.Process.Start("connection.exe");
best,
-Mike
Call exe file by click button from window form.
Posted: 3/20/2007 9:49:11 PM
I need to link or call a exe file(or form) if i click the button.How is the method or coding.Please help me i'm in thouble now.TQ very much
private void button1_Click(object sender, EventArgs e)
{
???????
}
The exe file name is connection....Tq
Krajah