pdf reader Question And Answer
How can I cause my C# program to call Adobe Acrobat Reader to view a PDF file?
I do not need to generate PDF documents. I only want to be able to call the Acrobat Reader to view them from my application.
Answers
Try this
using System.Diagnostics;
string Path_of_PDFFile;
Path_of_PDFFile = <PATH>; //Remember to use // instead of / when setting path.
Process.Start(Path_of_PDFFile);
The easiest way is to let the operating system (Windows?) determine what to do with a file.
Just use:
using System.Diagnostics;
.
.
.
String fileName = "foobar.pdf";
Process.Start(fileName);
use adobe activeX components and import them into ur code.
Try to use the dll's available from Adobe
hope this works fine for you :)