Does anyone knows how to display pdf file in winform? i am using c#. i don't want to use activex. maybe some one know good component or library. thanks
use pdfsharp
http://pdfsharp.com/PDFsharp/index.php?option=com_content&task=view&id=27&Itemid=42
We did this by using the WebBrowser control (System.Windows.Forms.WebBrowser) and letting it navigate to the pdf file which is on the users computer. We were generating the PDFs dynamically and saving them into the temp directory and then pointing the WebBrowser control at that temp file. Works great. -Jeff
I have been quite happy with the commercial PDFRasterizer.NET library.
For a free (gratis and open) option, you could try to let Ghostscript do the rendering, by invokings functions from the DLL using P/Invoke. Quite a few articles and some (partially complete) wrapper libraries turn up when doing a Google search on C# and Ghostscript (sorry, but noobs are only allowed one hyperlink per post).
@Shoban: AFAIK iTextSharp does not provide any PDF rendering capabilities.