Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MBumpy

    Zebra 105SL text file to Zebra LP2844

    The 2 printers use different command languages: 105SL = ZPL 2844 = EPL So the file for the 105SL will not work on the 2844. You would need a 2844-Z to be able to use the same file.
  2. MBumpy

    Help needed on: ZPL II commands for download and print graphics ( ~DY)

    Your process seems to work but there maybe something wrong with the graphic. I tried your process with another BMP file and it worked ok.
  3. MBumpy

    Changing code 128 subsets within barcode using ZPL

    Use >6 to change from subset C to B. Like this: ^BCN,214,Y,N,N^FD>;>831335678901234>6 ^FS >: is a start character, it's not for changing subsets.
  4. MBumpy

    Zebra Designer - Export to Printer

    The error message suggests you have some variable defined in your format that would not be available outside of ZDesigner, such as a Date field that ZDesigner would pull from the system. Any fields defined as counter fields, database fields etc. will prevent export to printer function from...
  5. MBumpy

    Triggering the cutter at specific labels

    Try setting the cutter mode to 'Delayed Cut' using ^MMD and then sending ~JK when you want the cutter to cut. Also, check the Zebra website to make sure your printer has the latest firmware in case this feature is not in your version.
  6. MBumpy

    Triggering the cutter at specific labels

    I think it never turns the cutter off because the ^MMT,N is not within ^XA ... ^XZ. Try changing to : </PageFooter> ^XA ^MMT,N ^XZ </LabelSchema>
  7. MBumpy

    ZPL Center Align

    The Field Block command (^FB) might work. This has a center justification option.
  8. MBumpy

    help in printing Graphics in ZPL?

    Zebra's label design software 'Zebra Designer' will probably do what you want. It is free from their website (not the Pro version) and supports JPG, BMP graphics files amonst others.
  9. MBumpy

    ZPL Programming: checking to see if downloaded TTF is installed

    The font is stored in DRAM since this is what's specified in the ~DT command. R: is the DRAM memory. You could change this to store it permanently in the FLASH memory by changing it to E: ~DTE:FONT__,21124 ... You can use the following commands to get a list of just fonts that are stored in...
  10. MBumpy

    Any USB printer fails to install.. &quot;unknown port&quot; ??

    When the USB printer is plugged in and powered up, Win XP should run 'USB Printing Support'. You should be able to see this in the Device Manager under USB Controllers. This should be running before you install the driver for the printer. Do you see this in the Device Manager ?
  11. MBumpy

    Networking Label Printers

    The PSII is not a PCI card, it connects to the parallel port of the printer and can connect directly to a switch. It's powered by the printer and is DHCP enabled by default so just plug it in and go. Configuration is easy via web pages.
  12. MBumpy

    Zebra ZPL II programming assistance please

    I don't see that problem. I would suggest setting the defaults on the printer and try the again. Set the defaults by holding down the feed button until the LED blinks 4 times.
  13. MBumpy

    Networking Label Printers

    The PrintServer II will work on both those models. I assume you mean LP2844, not LP2488?? Look at the PDF brochure on this page and see the compatibility matrix. http://www.zebra.com/id/zebra/na/en/index/products/networking/wired/zebranet_printserver_ii.html This only lists current models but...
  14. MBumpy

    Zebra ZPL II programming assistance please

    You have the Label Length command set to 500 (LL500) which is 2.5". Change it to 160 and it should give you the 0.75" you want. Mark ^XA^MMC^MNN^MTT^PON^PMN^JMA^PR4,4^JUS^CI0^XZ ^XA ^LH0,0^LL160 ^BY2,3,70^FT425,100^B3N,N,,N,N ^FD12345^FS ^FO400,110^A0N25,25 ^FDCEMVAR1000X1000X20004FLHS^FS...
  15. MBumpy

    Networking Label Printers

    What printer models do you have ?
  16. MBumpy

    Networking Label Printers

    Zebra has their own external printserver that works on their current printer models. It plugs onto the parallel port so as long as your printers have a parallel port you should be ok. Setup of the printservers is easy via web pages or the software that comes with the printserver. Other parallel...
  17. MBumpy

    Zebra Printers and VB6 - Printer Object/ZPL

    EPL commands require a lf termination. cr is optional. Also, it's good practice to send a cr/lf first. Change the following line and see if it helps. .Output = vbCrLf & Text2.Text & vbCrLf Mark
  18. MBumpy

    Send print string direct to print

    The Zebra driver has a passthrough function. Try embedding your code in ${...}$ The driver will pass the code directly to the printer without bitmapping it. E.g. ${^BY2,2.0,100^FO0,0^B2N,100,Y,N,N^FD12345678^FS}$ Mark
  19. MBumpy

    Zebra TLP 2844 problem

    Can you post the information that's on the configuration label. I'd want to see what Q setting is and also the JB/JF setting. Mark
  20. MBumpy

    How to print a gfx ON A tlp 2844 pRINTER

    Send the command to list the graphics in the printer (GI) If it is not listed, then there is a problem in the files you copied to the printer. Ensure the PCX is only 2 color. Ensure there is enough memory in the printer to store the graphic. This will be shown on the listing. A common mistake...

Part and Inventory Search

Back
Top