Download all you need here
Printing
[ Delphi ] – Print a canvas
May 4th
uses Printers; procedure PrintText(Text: string); begin with Printer do begin More >
[ Delphi ] – List print-jobs in a printer-queue
May 4th
uses Winspool, Printers; function GetCurrentPrinterHandle: THandle; var Device, Driver, Port: array[0..255] of Char; hDeviceMode: THandle; begin Printer.GetPrinter(Device, Driver, Port, hDeviceMode); if not OpenPrinter(@Device, Result, nil) then More >
[ Delphi ] – Print text
Apr 4th
var F: TextFile; begin AssignFile(F, 'LPT1');// LPT2,COM1,COM2... Rewrite(F); More >

