Questions tagged [abcpdf]

ABCpdf is WebSupergoo's software component for generating and manipulating PDF documents dynamically on Windows based systems, supporting the Microsoft .NET Framework and ASP/COM.

Useful resources on WebSupergoo's site:

342 questions
0
votes
1 answer

Edit PDF Text Object Given Its ID- ABCPDF

I can successfully add text to a pdf and store the object's ID in this way: int ID = theDoc.AddText(ItemText); However, when I try to update the item's text on the pdf in the following way, it does not work. theDoc.SetInfo(ID, ":Text",…
user1170679
  • 75
  • 1
  • 10
0
votes
2 answers

Export Doc to PDF Asp.net

So I am using this code, to export a formview to Word. Its works great..But I want it to export to PDF so that it cannot be edited. Or may be to a word doc so that not body can make changes. protected void Button1_Click(object sender, EventArgs…
Prashant
  • 15
  • 7
0
votes
2 answers

table border not showing in generated pdf from abcpdf

Why are all the borders or similar are missing? Such as table borders, hr tag, even form border is not working. i am converting html context to pdf using abcpdf, and the html can be shown correctly on any browser with table borders, hr tag and so…
Tiger
  • 139
  • 1
  • 3
  • 12
0
votes
1 answer

abcpdf7 vb6 is letter wrapping, rather than word wrapping

I am working on some legacy code and system, and trying to get auto -resizing of text working. however, despite the code working really well. This also wraps actual single words into two words. for example QUALITY becomes Has anybody any idea…
davethecoder
  • 3,856
  • 4
  • 35
  • 66
0
votes
2 answers

ABCpdf with textboxs not updating in PDF

I am making an invoice website while learning ASP.net MVC, and so far so good. The problem I am running into is when I update an invoice in my app, then try and download it as a pdf, I get the initial content of the page and none of the updates. I'd…
0
votes
1 answer

After altering a PDF form template in a program, why does Adobe Reader want to save the file when viewed later?

In the program I'm working in, a PDF form is used as a template to generate reports. Once we're done filling in all the information using ABCPDF, the PDF is flattened and then attached to an email. When the final form of the PDF is opened in Adobe…
Sam Erwin
  • 335
  • 1
  • 12
0
votes
1 answer

abcpdf page-break-before not working on last items in the list

Documentation from abcpdf, http://www.websupergoo.com/helppdf9net/source/3-concepts/g-htmlrender.htm, says that the html element below will cause a page break. It does but for the last page as you can see in the screen shot it doesnt. HTML passes…
Mike Flynn
  • 22,342
  • 54
  • 182
  • 341
0
votes
2 answers

Change the inset of a specific page with abcpdf

I use abcpdf to create a pdf from a html string. The following snippet shows the way I do it: var pdfDocument = new Doc(); pdfDocument.Page = pdfDocument.AddPage(); pdfDocument.Font = pdfDocument.AddFont("Times-Roman"); pdfDocument.FontSize =…
csteinmueller
  • 2,427
  • 1
  • 21
  • 32
0
votes
2 answers

How to create an editable pdf in asp.net?

here is a different type of requirement in my project regarding pdf. I want to generate a pdf with few of prefilled values. rest of the fields can be filled by user so Pdf should allow the user to edit the pdf so that he can save it locally on his…
Code Rider
  • 2,003
  • 5
  • 32
  • 50
0
votes
1 answer

ABCPDF version 8 HTML to PDF images not displaying

I have an aspx page with a calendar control on it. When I try to print this page to PDF none of my images or calendar gridlines are showing up. However when I go directly to the page everything is fine. Also I had this working on our dev server…
brookesmash
  • 95
  • 2
  • 11
0
votes
1 answer

Parse PDF with ABCPDF

I want to parse a PDF document I download with ABCPDF, but I cant find any elements in the document or how to reach them and iterate them. I want to parse out some text. var webClient = new WebClient(); var bytes =…
Mike Flynn
  • 22,342
  • 54
  • 182
  • 341
0
votes
1 answer

ABCPdf giving "Unable to render HTML. Unable to apply JScript" even with simple OnLoadScript

I'm trying to do some simple DOM manipulation when a page is rendered as a PDF using ABCPdf. I followed what they document here: http://www.websupergoo.com/helppdf9net/source/5-abcpdf/xhtmloptions/2-properties/usescript.htm But when I try something…
Josh Russo
  • 3,080
  • 2
  • 41
  • 62
0
votes
1 answer

Accessing a MVC3 view via absolute URL without displaying it

What I try to achieve: Convert a MVC3 view to PDF with abcpdf 8. It is a result view where I want to cut off party of the views DOM like navigation and other website related parts. Abcpdf needs, in order to render the html with all css formattings…
csteinmueller
  • 2,427
  • 1
  • 21
  • 32
0
votes
1 answer

Generate PDF using ABCpdf.net in form authenticated systems

I am using ABC.PDF to generate pdf from my existing system.It has form authentication mechanism. When i generate pdf it is always generate login page. Here is my function. Please help me ,Thanks inadvanced. private Doc GeneratePDFPage() { …
KDS
  • 99
  • 1
  • 16
0
votes
2 answers

WebSupergoo.ABCpdf Test application does not work

I recently cleaned up my Windows 7 64-bit PC, and after it ABCpdf8 started giving me an error, when I try to export HTML to PDF. The error is "Failed to initiate IE compatibility mode: Failed to load all required assemblies." at…
Oleksandr
  • 292
  • 1
  • 4
  • 15
1 2 3
22
23