>
> Message: 3
> Date: Thu, 25 Aug 2005 11:37:48 +0100
> From: Pedro de Barros <[EMAIL PROTECTED]>
> Subject: Printing to EPSON ESC/POS Printer
> To: <[email protected]>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="us-ascii"; format=flowed
>
> Hi,
>
> I'm trying to develop an application that prints the contents of a TMemo
> component to an EPSON ESC/POS printer (EPSON TM-U200).
>
> However, I am having difficulty figuring out exactly how to do this, as I
> only want to print ASCII text.
> Any pointers will be appreciated.
>
> Thanks in advance,
>
> Pedro

Pedro,
They are a pain aren't they.
Simplest would be to open comport and send your ascii to it as a file.
from memory

Assign(Comm1, f);
f.rewrite;
writeln(f, string);

CloseFile(f);

there have been some changes in recent Delphi and I'm getting the senile
virus

mick

_______________________________________________
Delphi mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi

Reply via email to