Einzelnen Beitrag anzeigen

Benutzerbild von APP
APP

Registriert seit: 24. Feb 2003
Ort: Graz (A)
705 Beiträge
 
Delphi 7 Enterprise
 
#2
  Alt 24. Apr 2003, 12:40
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...
Armin P. Pressler

BEGIN
...real programmers are using C/C++ - smart developers Delphi;
END;
  Mit Zitat antworten Zitat