Results 1 to 2 of 2

Thread: Printing Question...

  1. #1

    Printing Question...

    Hello,

    How do I print to a printer in Delphi Programmatically?

    I also want to be able to choose which printer?

    But not using the default Windows printer dialog...
    Nicholas.
    <br />
    <br />Please join: http://holzstukka.proboards81.com

  2. #2

    Printing Question...

    Code:
    uses
      Printers;
    ...
    Printer.BeginDoc;
    Printer.Canvas.TextOut&#40;100, 100, 'Hello World!'&#41;;
    Printer.EndDoc;

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •