Do I have to install acrobat pro at the customer's computer
Hi,
I made a software which provide exporting the pdf file to html page
Am using Delphi programming language to do that with this code:
{$R *.dfm}
{$TYPEDADDRESS OFF}
var
objAcroApp: AcroApp;
objAcroAVDoc: AcroAVDoc;
objAcroPDDoc: AcroPDDoc;
objJSO: Variant;
boResult: Boolean;
procedure TForm1.Button2Click(Sender: TObject);
var
workPath : string;
begin
workPath:= 'c:\temp\';
objAcroApp := CreateOleObject('AcroExch.App');
objAcroAVDoc := CreateOleObject('AcroExch.AVDoc');
boResult := objAcroAVDoc.Open(workPath + 'test.pdf', '');
objAcroPDDoc := objAcroAVDoc.GetPDDoc;
objJSO := objAcroPDDoc.GetJSObject;
boResult := objJSO.SaveAs(workPath + 'test.html', 'com.adobe.acrobat.html');
boResult := objAcroAVDoc.Close(true);
boResult := objAcroApp.Exit;
objJSO := Unassigned;
objAcroPDDoc := Unassigned;
objAcroAVDoc := Unassigned;
objAcroApp := Unassigned;
end;
After installing the acrobat DC standard / pro at my pc the application is working fin.
But my question is : when I move the application to the customer's pc,
Do I have to install (the acrobat DC standard / pro) for them?
If I don't want to install (the acrobat DC standard / pro) what I have to do?
Thanks a lot for help.
