Search code examples
c#openxml

In C# how does one make a file load in its correct program?


Possible Duplicate:
How do i launch files in C#

I mean say having a word document and running a function to open it in microsoft word etc.


Solution

  • System.Diagnostics.Process.Start("path to document") will start the default handler for that document type.