问题描述
- 向USB端口发送ZPL文件的代码
-
网上各位大侠:我需要向Zebra打印机的USB的端口发送ZPL的指令,但是我在编写好下面的ZPL文件,
^XA
^FO100,100^BY3
^BCN,100,Y,N,N
^FD2418866000001^FS
^XZ
通过下面的VB程序
public sub()
ZPLString = "^FO100,100^BY3" 'This line tells it where to print the barcode
ZPLString = ZPLString & "^BCN,100,Y,N,N" 'This is the line that tells it to print a barcode 128code
ZPLString = ZPLString & "^FD2418866000001^FS" 'This line tells it what data goes in the barcode
Printer.Print "^XA" 'Begin a new label
Printer.Print ZPLString
end sub打印机没有任何的反应,同时我试着将USB的端口映射到LPT的端口时.使用下面的命令
net use LPT1 WYZ123Printer1
出现下面的网络1321的端口错误.我不知道还有什么方式可以做到将ZPL文件发送给USB端口,实现打印条码.
解决方案
Printer.Print
这肯定不行,需要调用api
解决方案二:
不可以 需要调试 我也有在研究
时间: 2024-10-27 19:39:38