Delphi

TwitterFacebook
Get flash to fully experience Pearltrees

Delphi - Tudo o que você queria saber: Impressão direto pra porta (lpt, usb)

//declare o tipo e a classe abaixo //caso alguem tenha alguma duvida entre em contato //ntw@wmail.com.br type DOC_INFO_1 = Packed Record pDocName: PChar; pOutputFile: PChar; pDataType: PChar; End; TDirectPrinterStream = Class(TStream) private FPrinter: TPrinter; FHandle: THandle; FTitle: String; procedure CreateHandle; procedure FreeHandle; public constructor Create(aPrinter: TPrinter; aTitle: String); destructor Destroy; Override; function Write(const Buffer; Count: LongInt): Longint; Override; function Read(var Buffer; Count: Longint): Longint; override; property Handle: THandle Read FHandle; End; http://codigodelphi.blogspot.com/2009/09/impressao-direto-pra-porta-lpt-usb.html
(Parte 1 de 27) Um tutorial com as 100 melhores dicas selecionadas a dedo em toda a Internet para facilitar ainda mais o seu apredinzado em Delphi.

100 Dicas DELPHi

http://www.ebah.com.br/content/ABAAAAZnUAI/100-dicas-delphi
Framework

http://delphi.about.com/od/toppicks/tp/orm-object-relational-mapping-delphi.htm

ORM for Delphi - Object Relational Mapping / Persistence Frameworks for Delphi

Working with database data in Delphi can be really simple.