Dymo - 使条形码无效,如何获得精确值?
Dymo - makes invalid Barcode, how to make exact value?
我正在使用下面的条形码打印机来准确打印值 000220200
,以便扫描仪可以获取原始值。
但是当我把它打印出来,然后再次用扫描仪扫描时,它总是得到:5000220200
10 的长度而不是原来的 000220200
// used barcode <Type>Code128</Type>,tried all other types too
var label = dymo.label.framework.openLabelXml(labelXml);
label.setObjectText("BARCODE", '000220200');
label.print("DYMO LabelWriter 450"); // This is the NAME of the printer which i found
它有效。问题是因为我使用了无效的 <type></type>
"Dear Dymo. Please fix exception errors, so that people buying your hardware can stop wasting time."
我正在使用下面的条形码打印机来准确打印值 000220200
,以便扫描仪可以获取原始值。
但是当我把它打印出来,然后再次用扫描仪扫描时,它总是得到:5000220200
10 的长度而不是原来的 000220200
// used barcode <Type>Code128</Type>,tried all other types too
var label = dymo.label.framework.openLabelXml(labelXml);
label.setObjectText("BARCODE", '000220200');
label.print("DYMO LabelWriter 450"); // This is the NAME of the printer which i found
它有效。问题是因为我使用了无效的 <type></type>
"Dear Dymo. Please fix exception errors, so that people buying your hardware can stop wasting time."