Search code examples
c#.netwinformspdfdocumentviewer

Opening PDF or Doc In a winform


In my c#.net application I just want to open a pdf or document in a win form. Is it possible to open a Pdf reader or word processor through winform?


Solution

  •             Process mydoc= new Process();
    
                mydoc.StartInfo.FileName   = "path to pdf or word file c:\a.doc";
    
                mydoc.Start();