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
?
Process mydoc= new Process();
mydoc.StartInfo.FileName = "path to pdf or word file c:\a.doc";
mydoc.Start();