-3

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.

Community
  • 1
  • 1
Iskuri
  • 46
  • 7

1 Answers1

9

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

Bennor McCarthy
  • 11,415
  • 1
  • 49
  • 51