![]() |
Drucken: Querformat [NonVCL]
Servus Leute,
ich hätt gern mal wieder ein Problem, und zwar geht es um's Drucken ohne VCL.
Delphi-Quellcode:
Das hier funktioniert schon so, wie es soll.
program Print;
{$APPTYPE CONSOLE} uses Windows, Messages, WinSpool, MiniCommDlg; procedure PrintProc; var Pd : TPrintDlg; DocInfo: TDocInfo; begin FillChar(Pd, sizeof(Pd), #0); Pd.lStructSize := sizeof(Pd); Pd.hWndOwner := 0; Pd.Flags := PD_RETURNDC; if PrintDlg(pd) then begin FillChar(DocInfo, sizeof(DocInfo), #0); DocInfo.cbSize := SizeOf(DocInfo); GetMem(DocInfo.lpszDocName, 32); lStrCpy(DocInfo.lpszDocName, 'Dokument'); StartDoc(Pd.hDc, DocInfo); StartPage(Pd.hDc); TextOut(Pd.hDc, 00, 00, 'Seite 1', 7); EndPage(Pd.hDc); StartPage(Pd.hDc); TextOut(Pd.hDc, 00, 00, 'Seite 2', 7); EndPage(Pd.hDc); EndDoc(Pd.hDc); FreeMem(DocInfo.lpszDocName, 32); DeleteDC(Pd.hDC); end; end; begin PrintProc; end. Hinweis: Für's compilieren zu Hause einfach MiniCommDlg durch CommDlg ersetzen, MiniCommDlg ist nur meine miniaturisierte Unit. Nun hätte ich nur gerne den Druckdialog mit der Option Querformat vorbelegt. Das PSDK hat da eine schöne Option pmOrientation (2=Landscape) in der DEVMODE-Struktur drin, aber ich hab es noch nicht hinbekommen, das so an den Dialog zu übermitteln, dass das Blättchen auch gedreht wird. Vielleicht hat das schonmal jemand gemacht und weiß wie's geht? Grüßle, Daniel |
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:44 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz