Hallo,
ich kenne den Acrobat Writer nicht aber schau mal die nachfolgenden Parameter für PrintOut an:
Delphi-Quellcode:
uses ...ComObj...
var
WordApp : Variant;
begin
WordApp:=CreateOLEObject('Word.Application');
WordApp.Visible:=false; // it's the default, but in case you want to display
// it you just set the Visible to true
WordApp.PrintOut(FileName:="c:\config.sys", Range:=wdPrintAllDocument,
Item:=wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, Collate:=True, Background:=True,
PrintToFile:=False); //print out the file
WordApp.Quit;
WordApp:=Unassigned;
end;
(gefunden auf chaho.de
print Microsoft Word file using OLE)
Vielleicht hilft Dir das weiter...