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?

link|improve this question

61% accept rate
feedback

6 Answers

up vote 5 down vote accepted

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:

System.Diagnostics.Process.Start("SOMEAPP.EXE","Path/SomeFile.Ext");

[System.Runtime.InteropServices.DllImport("shell32. dll")]
private static extern long ShellExecute(Int32 hWnd, string lpOperation, 
                                    string lpFile, string lpParameters, 
                                        string lpDirectory, long nShowCmd);

Another approach is to place a WebBrowser Control into your Form and then use the Navigate method for opening the PDF file:

ThewebBrowserControl.Navigate(@"c:\the_file.pdf");
link|improve this answer
1  
no he wants the windows form project he's doing hosting the reader , not launch it – Saif al Harthi Dec 21 '10 at 22:26
Yes, as Saif said, I need to view the pdf file inside my application and not launch the PDF reader :) – Majd Dec 21 '10 at 22:36
Use the WebBrowser Control into your form. – Arce Brito Dec 21 '10 at 23:20
yes i think i'll go with that .. thx .. – Majd Dec 21 '10 at 23:56
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

link|improve this answer
Just for viewing the IE browser control should work just fine. – Paul Sasik Dec 21 '10 at 22:19
feedback

i think the easiest way is to use the Adobe PDF reader COM Component

  1. right click on your toolbox & select "Choose Items"
  2. Select the "COM Components" tab
  3. Select "Adobe PDF Reader" then click ok
  4. Drag & Drop the control on your form & modify the "src" Property to the PDF files you want to read

i hope this helps

link|improve this answer
VERY NEAT =D thx!! – Majd Dec 22 '10 at 1:10
you are welcome :) – Saif al Harthi Dec 22 '10 at 1:10
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.

link|improve this answer
interesting!! i already finished the project i was working on when i asked this question .. but i'm gonna try this for sure!! thx for the tip ;) – Majd Jan 7 '11 at 23:25
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

link|improve this answer
-1 WinForms is definitely not WPF and so this answer is not helpful. Please remove it. – Paul Sasik Dec 21 '10 at 22:20
WPF is not Winforms my friend – Saif al Harthi Dec 21 '10 at 22:23
2  
+1 to counteract the downvotes. WPF controls can (maybe) be used in a WinForms app, so that wouldn't automatically rule out LD7's suggestion. See: switchonthecode.com/tutorials/… – MusiGenesis Dec 21 '10 at 22:26
I saw that question but i haven't checked the answers as it is about WPF but the the answer that was chosen as the best one is said to be valid in WinForms and i will try it. Thx :) – Majd Dec 21 '10 at 22:33
3  
+1 to counteract downvotes because the as the answer says, the link is actually a winforms solution to a WPF question. – Reddog Dec 21 '10 at 23:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.