Tagged Questions

ZPL Programming guide

learn more… | top users | synonyms

5
votes
4answers
7k views

.NET code to talk ZPL to Zebra Printers

Is there a way to send ZPL (Zebra Programming Language) to a printer in .NET? I have the code to do this in Delphi, but it is not pretty and I would rather not try to recreate it in .NET as it is. ...
3
votes
2answers
839 views

How to print with win-1250 codepage on zebra printer?

I have this code for printing with Zebra printer (RW 420 to be specific) StringBuilder sb = new StringBuilder(); sb.AppendLine("N"); sb.AppendLine("q609"); ...
3
votes
5answers
4k views

Send raw ZPL to Zebra printer via USB

Typically, when I plug in my Zebra LP 2844-Z to the USB port, the computer sees it as a printer and I can print to it from notepad like any other generic printer. However, my application has some bar ...
2
votes
1answer
2k views

ZPL II Extended Characters

I'm trying to print extended code page 850 characters using ZPL II to a Zebra S4M. Whenever one of the extended characters I.E. ASCII value > 127 is used I get a box of varying shades of grey instead ...
1
vote
1answer
278 views

Printing ZPL (txt) from browser (Coldfusion scripted)

We have developed a webshop using Coldfusion. Now we are adding new functionality for printing labels over the internet. What happens, or rather what should happen is: The customer logs in at the ...
1
vote
3answers
836 views

printing to zebra printer that is default windows printer

I have defined a zebra printer as a default printer on my windows 7 machine . I have my zpl code that i want to print "^XA^LH30,30^FO20,10^AFN,56,30^FDqwewer^FS^FO20,80,^B3N,Y,20,N,N^FD213004^FS^XZ" ...
1
vote
2answers
874 views

vb6, ZPL, socket printing

I have done this programming in java and it works but can't make it run in vb6 (and I need to) Basically I need to send data to zebra printer over the network. The whole process works (no error ...
0
votes
0answers
222 views

Printing images (PNG) to a network zebra printer - ZPL, Z64, B64

I am trying to find a way of printing images to a zebra and having a lot of trouble. According to the docs: The first encoding, known as B64, encodes the data using the MIME Base64 scheme. Base64 is ...
0
votes
0answers
73 views

Zebra zpl ii bar code 128

I have problem with zpl ii bar code 128. I want make bar code from 9675212480 is that 9675 is size dots the same as 80 and 2124 is bigger than 9675 80..I did it this: '^XA^FO55,70^ BY4^A0N,0,0 ...
0
votes
3answers
514 views

Emulate Zebra printer

I am working on a java app that prints tickets to a Zebra printer. The problem is that I am working remotely and don't have access to the Zebra printer (or any other printer actually). I would like ...
0
votes
1answer
148 views

Zebra LP2844 stopped responding to ZPL Commands or Files

I sent a couple zpl files to the printer to test it and it worked fine. After that I was receiving base64 encoded zpl data from UPS and creating a file and sending it to the printer via a Java ...
0
votes
0answers
146 views

How to print to Zebra GK420d label printer using ZPL passthrough mode from internet explorer 9

Is there a way to print out a simple pass through ZPL command in IE9? I use Windows 7 IE8 x86 with the latest Zdesigner driver (v2.6.63.12) but now preparing the tansition to IE9 and a very basic ...
0
votes
1answer
152 views

ZPL - zebra: print justified text block without overwriting last line

I'm using the following command to print a justified text: ^FB1800,3,0,J^FT100,200^A0B,26,26^FH\^FDLONG TEXT TO BE PRINTED, WHICH DOESNT FIT IN ONLY 3 LINES...^FS The command ^FB1800,3,0,J prints a ...
0
votes
2answers
346 views

Querying Zebra printer status using RawPrinterHelper class

I'm using the RawPrinterHelper class from Microsoft, http://support.microsoft.com/kb/322091, to print to a Zebra KR403 printer from C# code, and everything is working fine. I wish to monitor the ...
0
votes
1answer
162 views

Translating from ZPL (Zebra Programming Language) to IPL (Intermec Programming Language)

I'm getting ready to embark on a week long adventure in translating a few print routines from ZPL to IPL. Within the ZPL there exists a Label Reverse Print (^LRY) command. This command reverses the ...
0
votes
1answer
249 views

EPL /ZPL printing for windows mobile 6

Hi while develeoping bluetooth print inw windows mobile 6 and C# using EPL/ZPL code[ Zebra Printer] Not printing while adding dynamically data to it... SerialPort comPort1 = new ...
0
votes
2answers
708 views

Print BMP with ZPL

How can I use ZPL II to print a bitmap (BMP) image? I used ~DY to download the BMP to the printer: ~DYR:PRINT,B,B, <size> , <width> , <data> I am using PHP to send raw data to ...
0
votes
1answer
193 views

Using jZebra as a servlet

I have a ZPL capable printer running on a server which I would like to integrate with jZebra (http://code.google.com/p/jzebra/). jZebra, however, is for client-side printing. What would be the best ...
0
votes
3answers
606 views

Printing “raw text” (ZPL) from Web

We have a lot of old ZPL labels. We would like to be able to print them from a web client. The printer is connected to the client and not the server. We have had a few ideas: Print from ...
0
votes
1answer
623 views

ZPL - how can we increase width of ^BC (Code 128) bar code

Am doing a formatting of barcode label. We are using Zebra Programming Language , ^BC (Code 128) bar code As i increase the size of ^FD Field Data , the barcode width is increasing. But how can i ...
0
votes
1answer
243 views

Closer to bypassing Flex print dialogue?

I know this is a pretty heavy topic and see requests for it all the time (I believe the stance for blocking it is security related). While messing around trying to get ZPL printing working in AIR, I ...