09.02.2022, 18:51, "James Richters via fpc-pascal" <[email protected]>:
,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 - [email protected]
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
I've worked with some Zebra label printers by sending commands directly to the port, opening them as a file.
Something like.
var
Printer: TextFile;
begin
AssignFile(Printer, 'COM1');
Rewrite(Printer);
WriteLn(Printer, 'Some command');
CloseFile(myFile);
end;
Where COM1 is the printer port ExCOMx, LPTx, \\Computer\SharedPrinter, /dev/xyz.
_______________________________________________ fpc-pascal maillist - [email protected] https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
