Thursday, August 21, 2008

Opening Application


System.Diagnostics.Process p = new System.Diagnostics.Process();
MessageBox.Show (treeView1.SelectedNode.Text); // .ToString());
p.StartInfo.FileName = treeView1.SelectedNode.Text; //Path
p.StartInfo.CreateNoWindow = true ;

p.Start();
---------------------------------------------------------------------------------

No comments: