02-27-2012 11:05 PM
Hi,
I am facing a problem in printing ZPL labels to TLP 2824-Z Model.please can any one help me to come out of the situation.
while printing the labels it is always prints string format.
i was struct to find it out.please help me..
02-28-2012 05:35 AM
02-28-2012 09:24 AM
Don't use the report generation toolkit. It doesn't really know how to handle getting data back from the printer regarding such things as the internal fonts. Since you already have the ZPL for your label simply send that to the printer. You can use VISA to connect to the printer via serial, parallel or TCP quite easily. You can also connect to the printer via USB using VISA but that is a bit more challenging to accomplish. Here is some info for using USB.
02-29-2012 01:41 AM
thanks for ur reply,is it possible to use LAN based printer using VISA?Moreover ZPL commands can be given directly to printer uisng VISA.
I am new to labview,can you please provide how to use VISA for LAN Based printer to support ZPL commands.
chaitu3.
02-29-2012 09:45 AM
Unless you are writing an application that would need to support multiple interfaces I would simply use the basic TCP/IP VIs. All you need from those would be the open, write and close VIs. You may also need the read if you will query the printer for any status information. All you need to do is open a connection to port 9100 on the printer and send the ZPL to it. You can look at the examples that ship with LabVIEW to see how to TCP/IP Vis work. If you want to use VISA you can. There are examples that are included with LabVIEW that show how to connect to a TCP connection using VISA as well.
02-29-2012 09:53 AM
I would risk repeating myself for this issue
Really, a ZPL express vi would be a great use of Express vis
(Going to wash out my fingers with soap for saying that)
03-01-2012 01:51 AM
I had a single interface to communicate with the printer "ZDesigner 110XIIIDPI", so i used TCP/IP but i was not getting zpl command format.
it is printing as a string format directly instead of ZPL.Please help me out.
thanks,
chaitu3
03-01-2012 11:00 AM
I no longer have my ZM600 on-hand to test out your code. Is your entire string printed out or is it cut off at some point?
03-01-2012 10:34 PM
thanks Mark.i work out with the TCP/IP as well as VISA both the things are working great...
thanks,
chaitu3