We can execute any application(any files,notepad,calculator and etc) using C#.net by
System.Diagnostics.Process.Start.
Coding :
private void bt_ShellExecute_Click(object sender, EventArgs e)
{
string strpath = “C:\\sample.xls”;
System.Diagnostics.Process.Start(strpath);
}
Popularity: 2% [?]

September 17th, 2008
admin
Posted in 
