Re: [fpc-pascal] Text Only printing on Windows.

2022-02-10 Thread LacaK via fpc-pascal
Look at TPrinter.RawMode : https://lazarus-ccr.sourceforge.io/docs/lcl/printers/tprinter.rawmode.html and TPrinter.Write  Printer.Title := 'xyz';  Printer.RawMode := True;  Printer.BeginDoc;  Printer.Write('^MTD'); //direct thermal media  Printer.EndDoc; L. Does anyone know of a way to just

[fpc-pascal] Text Only printing on Windows.

2022-02-10 Thread Luis Henrique Barbosa de Lima via fpc-pascal
 09.02.2022, 18:51, "James Richters via fpc-pascal" :Thanks for the information.  It’s not a Dymo printer, it’s a Zebra printer. But maybe it will work in a similar way.. James,___fpc-pascal maillist -

Re: [fpc-pascal] Text Only printing on Windows.

2022-02-09 Thread James Richters via fpc-pascal
Thanks for the information. It's not a Dymo printer, it's a Zebra printer. But maybe it will work in a similar way.. James ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Text Only printing on Windows.

2022-02-09 Thread Alexander Grotewohl via fpc-pascal
discussions' Cc: James Richters Subject: [fpc-pascal] Text Only printing on Windows. Way back in the old Turbo Pascal days, it was super simple to send text to a printer… I had written a program that printed text on labels in the order the labels were needed.. the whole thing took me less than

[fpc-pascal] Text Only printing on Windows.

2022-02-09 Thread James Richters via fpc-pascal
Way back in the old Turbo Pascal days, it was super simple to send text to a printer. I had written a program that printed text on labels in the order the labels were needed.. the whole thing took me less than an hour to write and labels were spewing out of the printer. I haven't had a need to