0
我正在使用delphi加載adobe acrobat專業版。我如何設置父對象來在我自己的應用程序窗口中運行acrobat?Delphi OLEObject父窗口
PDFDoc := CreateOleObject('AcroExch.App');
PDFDoc.show;
我正在使用delphi加載adobe acrobat專業版。我如何設置父對象來在我自己的應用程序窗口中運行acrobat?Delphi OLEObject父窗口
PDFDoc := CreateOleObject('AcroExch.App');
PDFDoc.show;
要在您的Delphi應用程序運行嵌入ActiveX控件,你可以使用TOleContainer
組件。像這樣
OleContainer1.CreateObject('AcroExch.App', False);