adobe-reader

PDF files do not open in Internet Explorer with Adobe Reader 10.0 - users get an empty gray screen. How can I fix this for my users?

不羁的心 提交于 2019-12-03 18:30:09
问题 There is a known issue with opening a PDF in Internet Explorer (v 6, 7, 8, 9) with Adobe Reader X (version 10.0.*). The browser window loads with an empty gray screen (and doesn't even have a Reader toolbar). It works perfectly fine with Firefox, Chrome, or with Adobe Reader 10.1.*. I have discovered several workarounds. For example, hitting "Refresh" will load the document properly. Upgrading to Adobe Reader 10.1.*, or downgrading to 9.*, fixes the issue too. However, all of these solutions

iTextSharp ColumnText.SetSimpleColumn Addtext causes Error in Adobe Reader X 10.1.5

﹥>﹥吖頭↗ 提交于 2019-12-02 12:40:15
问题 The code below illustrates a problem I have with iTextSharp. Everything works perfectly. The pdf file is created and appears correct on the screen. When I print the pdf from Adobe Reader X, it looks exactly right but Adobe reports "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem." Unfortunately, the file has to be attached to an email and sent to clients. The error message is not a good

Need to add a new page to a pdf document that already has a digital signature

て烟熏妆下的殇ゞ 提交于 2019-12-02 07:45:38
i need to add a new page when there is no more space on the last page of the document i have been seen the digital signare book of itext and it says the i can't be just using the insertPage() method and that's how i do now so the digital signatures get broken so the book says. NOTE: Be aware that ‘page adding actions are allowed’ doesn’t mean you can use the insertPage() method. This message refers to page template instantiation as described in the Adobe Acrobat JavaScript Reference Manual, which is out of scope in this paper. but i can't find how to add the new page with javascript and itext

iTextSharp ColumnText.SetSimpleColumn Addtext causes Error in Adobe Reader X 10.1.5

大兔子大兔子 提交于 2019-12-02 07:20:38
The code below illustrates a problem I have with iTextSharp. Everything works perfectly. The pdf file is created and appears correct on the screen. When I print the pdf from Adobe Reader X, it looks exactly right but Adobe reports "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem." Unfortunately, the file has to be attached to an email and sent to clients. The error message is not a good look and I want to fix it. It happens in all versions of Reader that I have tried, including 10.1.15

PDF JavaScript does not work in Adobe Reader DC but all other Readers

巧了我就是萌 提交于 2019-12-01 17:47:34
I am unable to get my pdf to work online with Adobe Reader DC. http://www.okeechobeecountytaxcollector.com/Documents/FeeCalculatorRev0909.pdf None of the buttons or functionality is working. (Like when you click motorvehicles, or Mobile homes or any of those buttons across the top a drop down of choices is supposed to appear) But if I open in any other reader it works fine. Does anyone know how I may be able to edit the document to work properly in Adobe Reader DC as well? Is there any settings in the document or anything that you have to change for things to work in DC? I have tried changing

closing an instance of acrobat reader from command line

折月煮酒 提交于 2019-12-01 04:50:23
I am using the following cmd to print the pdf: acroRD32.exe /t "file1.pdf" "printerName" Everything works fine but one window pops up. Can anybody help me to disable it. I tried with various options included in this question but cannot succeed. Any help is appreciated. Why even use Acrobat at all? This class that print silently for you without any executables or even a printer setup: Sample Usage: bool isPrinted = BatchPrint.PrintBinaryFile("file path", "Printer IP Address", "Queue Name", "User"); public class BatchPrint { private const int cPort = 515; private const char cLineFeed = '\n';

How to add text object to existing pdf

岁酱吖の 提交于 2019-12-01 00:50:10
I have a source pdf which I am modifying by adding text objects. I am using "Incremental Updates" which is mentioned in the PDF specification. But while adding text objects using this method I am making some mistakes due to which the pdf doesn't render properly in Adobe Reader 11. When the pdf is opened and I double-click on it, the added text objects get deleted. I figured out that this is due to text annotation. Now I want to know how a new text object can be added using incremental update? How do the Contents and RC of a free text annotation have to be to maintained? Also is it possible to

Programmatically Printing in Adobe Reader 9 using .NET Interop

 ̄綄美尐妖づ 提交于 2019-11-30 16:22:00
问题 I am using VB.Net WinForms. I would like to call the Adobe Reader 9 ActiveX control to print some PDFs. I have added the ActiveX control to the VS toolbox (the dll is AcroPDF.dll, the COM name "Adobe PDF Reader". After some experiment the following code works. Dim files As String() = Directory.GetFiles(TextBoxPath.Text, "*.pdf", SearchOption.TopDirectoryOnly) Using ActiveXPDF As New AxAcroPDFLib.AxAcroPDF Me.Controls.Add(ActiveXPDF) ActiveXPDF.Hide() For Each filename As String In files

Programmatically Printing in Adobe Reader 9 using .NET Interop

徘徊边缘 提交于 2019-11-30 16:20:46
I am using VB.Net WinForms. I would like to call the Adobe Reader 9 ActiveX control to print some PDFs. I have added the ActiveX control to the VS toolbox (the dll is AcroPDF.dll, the COM name "Adobe PDF Reader". After some experiment the following code works. Dim files As String() = Directory.GetFiles(TextBoxPath.Text, "*.pdf", SearchOption.TopDirectoryOnly) Using ActiveXPDF As New AxAcroPDFLib.AxAcroPDF Me.Controls.Add(ActiveXPDF) ActiveXPDF.Hide() For Each filename As String In files ActiveXPDF.LoadFile(filename) ActiveXPDF.printAll() 'Begin Yukky Hack ' Dim endTime As Date = DateAdd

How to get Adobe Reader full path(including executable file name)?

戏子无情 提交于 2019-11-30 07:02:12
问题 it's possible? I need to get the full path of Adobe Reader including the executable name. I'm looking for on windows registries, the closer that I did was found the full path without executable name. Thanks in advance. my code: var adobe = Registry.LocalMachine.OpenSubKey("Software").OpenSubKey("Adobe").OpenSubKey("Acrobat Reader"); var version = adobe.GetSubKeyNames().First(); var path = adobe.OpenSubKey(version).OpenSubKey("installer").GetValue("path"); Thanks in advance. 回答1: One of these