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.
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.
System.Diagnostics.Process.Start("path to document")
will start the default handler for that document type.