How do I put a pdf document onto my website as a web page? When I send emails I want customers to be able to click on a link in the email which then goes to a web page that is a pdf document.
pdf to web page
embed link in pdf
populate a list field with values from an sql database table
Hi,
I'm looking for a simple solution may be adobe javascript or arobat sdk or anyelse tool to connect my pdf form to an SQL database
I have the acrobat XI pro.
Thank you very much
How to convert HTML to PDF programmatically?
How to convert HTML to PDF programmatically?
I'm programmer VBA and I need to develop a application. Note: This application will not have dialog 'Save As' for enter file name. Adobe® Acrobat® XI is possible custom?
Application whitout 'Save As', please!
Acrobat SDK to create form fields on existing pdf
I am trying to implement a browser based editor for my company's application. This requires to fetch an already created pdf document, add form fields on it and display on a browser.
Does it look feasible? Does Acrobat SDK allow to create a fillable pdf from an existing file?
--
Vishal
Usng Acrobat SDK to create form fields on an existing pdf
I am trying to implement a browser based editor for my company's application. This requires to fetch an already created pdf document, add form fields on it and display on a browser.
Does it look feasible? Does Acrobat SDK allow to create a fillable pdf from an existing file?
--
Vishal
Export PDF to EXCEL in .net
I am trying to export PDF to EXCEL by using .NET, do you have any function in SDK to read my PDF.
Thanks
The SDK have no C# Sample to create a new PDF-Document
I have Acrobat Pro XI installed. I have about 100.000 single pages of tif-files. The number of single pages which belong to one document are variable.
Now I want to write a Programm in C# using .NET Environment to convert this to pdf.
Thanks for help
Ducallbacks.h and Acrobat SDK XI Plug-in Development
I am new to plugin development and am in the process of upgrading a plug-in developed under Acrobat 5. The SDK XI API documentation under "Plug-ins and Applications> Developing Plug-ins and Applications> Understanding Plug-ins> About plug-in initialization> Handshaking" references the DUCallbacks.h header file.
I have that header file in the Acrobat 5 SDK, but I do not see it in the current Acrobat XI download and I don't see any usage of it in the SDK XI samples. Am I missing files or is Ducallbacks.h no longer part of the SDK? If it's not a part of the SDK any longer, is there an updated version of the plug-in developer's guide that discusses handshaking under the current SDK? I have searched the Adobe site and not found anything newer than what's included in the SDK download.
Thanks!
stream object with reference to its length
Hi,
I have the following pdf file and I cannot see page 1 in Adobe Acrobat Reader. I can see it correctly in any other pdf reader.
I need to create a stream with reference to its length (see object 100 and 200) but I could make it work. I followed the pdf spec (page 65) but it's not working.
in page 2, where the length not a reference object, everything is fine.
Please help.
%PDF-1.5
%þ
1 0 obj << /Type /Catalog /Pages 2 0 R >> endobj
2 0 obj << /Type /Pages /MediaBox [0 0 595 842] /CropBox [0 0 595 842] /Resources 3 0 R /Kids [ 010 0 R 011 0 R ] /Count 2 >> endobj
3 0 obj << /Type /Resources /Font << /FH 4 0 R /FHB 5 0 R >> >> endobj
4 0 obj << /Type /Font /Subtype /Type1 /Name /FH /BaseFont /Helvetica /Encoding /WinAnsiEncoding >> endobj
5 0 obj << /Type /Font /Subtype /Type1 /Name /FHB /BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding >> endobj
6 0 obj << /Length 205 >> stream
0.5 0.5 0.5 rg BT /FHB 14 Tf 55 810 Td(xxx) Tj ET BT 55 795 Td(www.xxx.com) Tj ET BT 421 810 Td(yyy) Tj ET BT 421 795 Td(01/01/2015 12:00:04) Tj ET BT /FH 12 Tf 295 30 Td (/1 ) Tj ET 55 790 m 540 790 l S
endstream >> endobj
10 0 obj << /Type /Page /Parent 2 0 R /Contents [6 0 R 200 0 R 100 0 R ] >> endobj
11 0 obj << /Type /Page /Parent 2 0 R /Contents [6 0 R 101 0 R ] >> endobj
100 0 obj << /Length 200 0 R >> stream
BT /FHB 14 Tf 235 750 Td(Page 1)Tj ET
endstream >> endobj
200 0 obj
37
endobj
101 0 obj <</Length 37 >> stream
BT /FHB 14 Tf 235 750 Td(Page 2)Tj ET
endstream >> endobj
xref
0 12
0000000000 65535 f
0000000014 00000 n
0000000064 00000 n
0000000198 00000 n
0000000270 00000 n
0000000378 00000 n
0000000492 00000 n
0000000753 00000 n
0000000837 00000 n
0000000913 00000 n
0000001012 00000 n
0000001035 00000 n
trailer
<</Size 12/Root 1 0 R>>
startxref
1381
%%EOF
PDAnnotSetTitle call does not update title in Comments List
I'm using Acrobat SDK 9.1 and Acrobat XI Pro.
When calling PDAnnotSetTitle the annotation title is properly changes in annotation. If a popup associated with annotation is open - I can see that title changes are reflected there. But in Comments panel in Comments List subpanel the title is not changed. It's very weird because PDAnnotSetDate immediately updates annotation date in Comments List. Shall I use something advanced to update Comments List when changing title?
Kind Regards,
Alexander
Invalid SetError: Set not possible, invalid or unknown error using IE11
I have a web based application the opens PDF files and adds a watermark and then saves the file to a new location. The watermark is added with a javascript function that has worked until IE11 was installed on my laptop which is running Windows7. The error happens at this point in the code;
if (jso = doc.GetJSObject()) {
tracker=4;//4
This is the code leading up to the to point where the error occurs;
function createActiveXObjects(){
if(!fs) fs = new ActiveXObject("Scripting.FileSystemObject");
if(!app) app = new ActiveXObject("AcroExch.App");
if(!doc) doc = new ActiveXObject("AcroExch.PDDoc");
function addUncontrolledCopy(files){
try{
//Create the objects needed to manipulate pdfs
var tracker=0;var k=0;
var file,source,destination,c=0;
//Check if the ActiveX objects are created;
tracker=1;//1
//alert(files);
if (doc && fs && app){
//Try to open the file
var folder=PROCESSPRINTS;
//alert(folder);
//Check if the folder exists, if not create one;
folder+=partNumber.substr(0,4)+" Prints\\";
if (!fs.FolderExists(folder)){fs.CreateFolder(folder);}
tracker=2;//2
if(!fs.FolderExists(folder+=partNumber+"\\")){fs.CreateFolder(folder);}
tracker=3;//3
for (k=0;k<files.length;k++){
//Get the default location of the pdf files
if (doc.open(file)){
//get jso object from file
if (jso = doc.GetJSObject()) {
tracker=4;//4
//Add the "Uncontrolled Copy" and save the file;
tracker=5;//5
//Move the pdf files to the new location;
//alert(source);
//alert(destination);
tracker=-1;//-1
tracker=6;//6
//Keep track on how many files are moved;
//Kill TIF files
file=TIFUPDATES+files[k].replace(/.pdf/i,'.tif');
if(fs.FileExists(file)) fs.DeleteFile(file);
tracker=7;//7
}//else alert("Failed to open "+pdfFile);
//Display a notification of how many files were moved;
if (c>0) alert("There were "+c+" prints distributed.");
Does anyone have any ideas on what might be causing the problem or how to resolve the issue?
how can i hide navigation panel buttons
susana
Windows 8/8.1においてアプリケーションからAdobe Reader11でPDFファイルを開くことができない
Windows 8/8.1においてアプリケーションからAdobe Reader11でPDFファイルを開くことができない
<環境>
OS:Windows 8/8.1(32bit/64bit)
ユーザ:Administrators権限
アプリケーション:
manifestファイルのrequestedExecutionLevel:highestAvailable
PDFファイルを開く際のAPI:ShellExecuteEx API
調査したところ、Administrators権限のユーザでアプリケーションのmanifestファイルのrequestedExecutionLevelの指定で動作が異なることが分かり ました。
<requestedExecutionLevelの定義と動作>
asInvoker:問題なくPDFファイルは開ける
highestAvailable:PDFファイルは開けない。(タスクマネージャでAdobe Reader11が実行状態のままになっている)
また、Adobe Reader11の保護モードを無効にすると、PDFファイルを開くことでできます。
Adobe Reader10では、保護モードの有効・無効に関係なくPDFファイルを開くことでできましたが、Adobe Reader11になって仕様が変更になりましたでしょうか。
その際変更になった仕様内容を教えて頂きたいです。
Acrobat Pro DC SDK
Adobe sprung the announcement of Acrobat Pro DC on us today. Is there any information about a plug-in SDK for this version of Acrobat? Our users are reporting that their Acrobat XI plug-ins don't work with DC, which may have something to do with the application being 64-bit, especially on Mac.
necesito un editor carobat para mac 10.6 me he descargado el de la pagina pero es para una version posterior muchas gracias
necesito un editor carobat para mac 10.6
me he descargado el de la pagina pero es para una version posterior
muchas gracias
Modeless window
Hi all,
I've created a plug-in for acrobat that takes a long time to process. So, I want to show a mode-less window/dialog that show the progress of the work done.
Can you let me know if is this possible? and point me to a solution?
I tried to create a windows form but I forced to add "Common Language Run-time" support. Which I don't think is compatible.
thanks for your support.
Oscar
How to read Annotation Properties using vb.net?
Hi Experts,
I tried to read read Annotation Type and contents using in below vb.net code. But how to read Annotation Properties like author, subject, etc., in acrobat professional 7 using vb.net. Thanks in advance.
Dim num_pages As Long
num_pages = pdfDoc.GetNumPages
For ii = 0 To num_pages - 1
Dim pdpage As Object
pdpage = pdfDoc.AcquirePage(ii)
If (Not pdpage Is Nothing) Then
Dim page_head_b As Boolean
page_head_b = False
Dim num_annots As Long
num_annots = pdpage.GetNumAnnots
For jj = 0 To num_annots - 1
annot = pdpage.GetAnnot(jj)
If (annot.GetSubtype <> "Popup") Then
Textstr &= annot.GetSubtype.ToString & ","
End If
Next jj
End If
Next ii
Regards,
KesavanRaju.
Adobe Reader DC: DDE open command
Hello,
I am creating PDFs in a separate program, which uses a DDE command to automatically open the PDF in Adobe Reader once the PDF is created. This command is not successfully opening the PDF, although manually opening the PDF works fine. I know that similar problems occurred for Acrobat/Reader versions 10 and 11. These problems were fixed by changing the "server" for the DDE command from "acroview" to "acroview{A|R}{Major Version}" where A is used for acrobat, R for reader, and "Major Version" is "10" or "11". What is the syntax that should be used for version DC? I have tried "acroviewRDC" and "acroviewRdc" without success.
Any help or suggestions are greatly appreciated.
how to set permission to export PDF?
We developed plugin based on Acrobat XI SDK to save PDF as TIFF using example of AVConversionEnumFromPDFConverters
How can I set PDPermReqObjDoc document permission PDPermReqOprExport to "yes" to always allow conversion?