Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

displaying a pdf on a windows form?

in vb.net is it possible to display a pdf file on a form?

like image 875
Alex Gordon Avatar asked Aug 24 '09 20:08

Alex Gordon


2 Answers

If you're looking to display a PDF without needing Acrobat Reader installed on a client machine, take a look at this:

PDF Viewer Control Without Acrobat Reader Installed

I haven't tried it yet but probably will.

like image 80
Jay Riggs Avatar answered Nov 14 '22 05:11

Jay Riggs


A quick hack for this would be to use a WebBrowser control (assuming the client has Adobe Reader installed) and navigate it to the PDF file you want to display.

like image 36
MusiGenesis Avatar answered Nov 14 '22 03:11

MusiGenesis