// 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);
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