Is there any way to view PDF files in a Winforms tool? I've seen solutions such as converting the pdf file into images and showing them in an picture box. However, I am asking whether i can view the file as PDF. Is there any tool from adobe or from Microsoft that supports this?
|
feedback
|
|
you can use System.Diagnostics.Process.Start as well as WIN32 ShellExecute function by means of interop, for opening PDF files using the default viewer:
Another approach is to place a WebBrowser Control into your Form and then use the Navigate method for opening the PDF file:
| |||||||||||
feedback
|
|
display PDF file into WinForms Displaying a pdf file from Winform. displaying a pdf on a windows form? How to display PDF or Word's DOC/DOCX inside WinForms window? | ||||
|
feedback
|
|
Web Browser control might work. http://ryanfarley.com/blog/archive/2004/12/23/1330.aspx Also a bunch of pdf open source c# projects here http://csharp-source.net/open-source/pdf-libraries | |||
|
feedback
|
|
i think the easiest way is to use the Adobe PDF reader COM Component
i hope this helps | |||||
|
feedback
|
|
Not all end-user computers will have Adobe Reader or some other PDF viewer (with a IE plugin) installed. So, you will need a native .NET control to display the PDF. Gnostice has a PDF viewer control for .NET in the PDFOne component suite. Disclaimer: I work for this company. | |||
feedback
|
|
This was answered in an WPF question so I don't know if it works, but it is for winforms... Opening a PDF in WPF Application | |||||||||||||||
feedback
|