Wednesday, March 2, 2011

C#.NEt - To Open any system application in C#.NET

// To open existing file of any type.
System.Diagnostics.Process.Start(string FileName);

// To open application, (and/or create new file).
System.Diagnostics.Process.Start("notepad",string FileName);

No comments:

Post a Comment