<div><div><div> </div></div></div><div>09.02.2022, 18:51, "James Richters via fpc-pascal" <fpc-pascal@lists.freepascal.org>:</div><blockquote><div lang="EN-US" style="word-wrap:break-word"><div><div><div><p style="font-family:'calibri' , sans-serif;font-size:11pt;margin:0in">Thanks for the information.  It’s not a Dymo printer, it’s a Zebra printer. But maybe it will work in a similar way..</p><p style="font-family:'calibri' , sans-serif;font-size:11pt;margin:0in"> </p><p style="font-family:'calibri' , sans-serif;font-size:11pt;margin:0in">James</p></div></div></div></div>,<p>_______________________________________________<br />fpc-pascal maillist - <a href="mailto:fpc-pascal@lists.freepascal.org" rel="noopener noreferrer">fpc-pascal@lists.freepascal.org</a><br /><a href="https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal" rel="noopener noreferrer">https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal</a></p></blockquote><div><div>I've worked with some Zebra label printers by sending commands directly to the port, opening them as a file.</div><div> </div><div>Something like.</div><div><div><div>var</div><div>  Printer: TextFile;</div><div>begin</div><div>  AssignFile(Printer, 'COM1');</div><div>  Rewrite(Printer);</div><div> </div><div>  WriteLn(Printer, 'Some command');</div><div> </div><div>  CloseFile(myFile);</div><div>end;</div><div> </div><div>Where COM1 is the printer port ExCOMx, LPTx, \\Computer\SharedPrinter, /dev/xyz.</div></div></div></div>