PDF Viewer control for .NET


Author
Message
Teddy Jensen
Teddy Jensen
StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)
Group: StrataFrame Users
Posts: 52, Visits: 8K
What - You can't understand danish ? Smile

I haven't used the viewer in production, i just found it today and made a form as an example to use a viewer in the app. So i have no idea how stable it is.

Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
Teddy - thanks for the link to the free Viewer - didn't know about that one but it looks good ( except there are a lot of words that seem to be misspelled in the PDF - at least I can't make any sense out of them Wink )



Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Thanks a lot to everybody, I am overwhelmed with all the response and code sharing offers.



I will take a look at the suggested tools and post my choice soon.



A while back working with Visual FoxPro I had to do almost same requirements with PDFs and I choose and ActiveX called AtivePDF Toolkit and it worked pretty good, but today tools pricing are just getting more and more unreachable, not to mention the royalties involved.

Edhy Rijo

Trent Taylor
Trent Taylor
StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)StrataFrame Developer (10K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
I was about to post exactly what Teddy mentioned. I am generally not an open source kind of guy, but PDF royalties are a royal pain! I created a wrapper for our internal use using iTextSharp. There are a few little idiosyncrasies, but once you work through them, it actually works quite well. When you look around at all of the commercialized PDF tools, there are some benefits in regards to slightly better design, but you can most definitely make iTextSharp work and it is free! Once you create a few wrappers making the integration easier, then you will be please with the results.



http://sourceforge.net/projects/itextsharp/
Teddy Jensen
Teddy Jensen
StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)
Group: StrataFrame Users
Posts: 52, Visits: 8K
Yeah, when i mentioned IText earlier, it was this one also mentioned by Bill http://itextsharp.sourceforge.net/

Charles, you are right that you can use System.Diagnostics.Process.start(pdfname) but it will show the file outside the application.

If you want it inside your application you will need a viewer. I attached a screenshot of the free PDF.NET viewer inside an SF app:


Attachments
PDFViewer.png (155 views, 182.00 KB)
Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)Advanced StrataFrame User (922 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
Hi Edhy -



I've been doing a lot of this lately. iTextsharper will handle the form-filling elegantly. Be happy to share whatever vb code you need. The Foxit Phantom suite is $129 and will do pretty much everything acrobat will do for creating/modifying the pdf forms.



Filling in the forms is very cool once you get the hang of it.



And, as you probably know, just to let the end user bring up a PDF to view or print you can use System.Diagnostics.Process.start(pdfname)

Bill Cunnien
Bill Cunnien
StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)StrataFrame VIP (1.1K reputation)
Group: Forum Members
Posts: 785, Visits: 3.6K
http://itextsharp.sourceforge.net/
Teddy Jensen
Teddy Jensen
StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)StrataFrame Novice (118 reputation)
Group: StrataFrame Users
Posts: 52, Visits: 8K
Hi Edhy,

You can buy the ComponentOne PDF toolkit solo here:

http://www.componentsource.com/products/componentone-pdf-net/index.html

And here are more PDF tools:

http://www.componentsource.com/features/pdf/net-components/index.html

As a free alternative, maybe you can use the IText tools to fill your PDFs and then use a free viewer: http://www.codeproject.com/KB/applications/PDFViewerControl.aspx

I haven't used this, though, so I can't say how well they work.

/Teddy

Edhy Rijo
E
StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)StrataFrame VIP (4.6K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Thanks Greg, will check it out.

Edhy Rijo

Greg McGuffey
Greg McGuffey
Strategic Support Team Member (3.4K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
I haven't used this, but here is another option from ComponentOne.



http://www.componentone.com/SuperProducts/PDFNET/



It is part of a suite though, so price may be too high, unless you can use some of the other components. I'm using their spell checking component, which has worked well.
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search