Groups | Blog | Home
all groups > vb.net controls > october 2004 >

vb.net controls : PDF Viewer for VB.net


Brij Singh
10/25/2004 3:45:12 PM
Can any one please suggest some control for PDF File to view in VB.net

We have pdf files and we need to view it in the viewer but i dont want to
use adobe acrobat viewer
as we dont want to diplay the default toolbar and menu and also it seemed
little slower too.

Thanks,

Brij


Ken Tucker [MVP]
10/25/2004 6:51:34 PM
Hi,

http://www.codeproject.com/showcase/TallComponents.asp


Ken
-----------------
[quoted text, click to view]
Can any one please suggest some control for PDF File to view in VB.net

We have pdf files and we need to view it in the viewer but i dont want to
use adobe acrobat viewer
as we dont want to diplay the default toolbar and menu and also it seemed
little slower too.

Thanks,

Brij



thomas wenning
10/29/2004 11:16:47 AM

"Brij Singh" <brijs@telcorinc.com> schrieb im Newsbeitrag
news:uJ3sOOtuEHA.2856@TK2MSFTNGP15.phx.gbl...
[quoted text, click to view]

Hi Brij,

here is an example for the Acrobat 5.0 SDK. I thing in this sdk is an
example to view an pdf file in your application.
http://www.codeproject.com/dotnet/pdfthumbnail.asp

Greeting

Thomas

Paul Bromley
11/9/2004 9:00:11 PM
Hi Brij,

I have successfully used the Adobe Acrobat Control for Activex in an
appliucation. Adobe Reader needs to be installed on the PC.

This is my code below that loads a PDF file into the control from a Treeview
control

Best wishes

Paul Bromley

Case 5 'PDF Files
tlbPrint.Enabled = False
sFileType = "PDF"
sPDFChosen = e.Node.Text 'Select Document from Tag Property
sPDFFileChosen = (sFilePath & "\" & sPDFChosen) 'Assign PDF File
With axPDF
..Visible = True
..setShowToolbar((True))
..LoadFile(sPDFFileChosen)
Cursor.Current = Cursors.Default
..Show()
..Select()
..SuspendLayout()
End With


[quoted text, click to view]

AddThis Social Bookmark Button