第一次使用ZPL时,我正在搜索我的问题但到目前为止还没有。
我已经下载了ZPL II编程语言pdf文件,并尝试打印第一个样本:
^XA
^FO50,50^ADN,36,20^FDTesting^FS
^XZ
我已经使用上面的代码创建了txt文件,但是当尝试“复制”到打印机时没有任何反应。
copying to the printer
我发现了这一点:copy printtest.txt usb1
或copy printtest.txt > usb1
但这不起作用。
我有一个Zebra打印机型号S4M,通过usb连接:端口:USB001
描述:Virtual printer port for usb
任何帮助将不胜感激。
答案 0 :(得分:4)
打印很简单... 首先分享你的打印机 将文件复制到共享打印机路径示例\ Zebra1
我发现了一些VB代码我曾经使用过一段时间后希望它有所帮助
Dim tempFile As New IO.StreamWriter("Name of file")
Dim PrnPath as string ="\\MY-PC\Zebra"
IO.File.Copy(tempFileName, PrnPath, True)
答案 1 :(得分:0)
简单的C#:
if (File.Exists(inputFilePath))
{
System.IO.File.Copy(inputFilePath, printerPath);
}
else
{
//no file.
}
其中: - inputFilePath - ZPL文件的路径(不需要特殊扩展名); - printerPath - 共享(!)打印机的路径,例如:\ 127.0.0.1 \ zebraGX