Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8794121
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:12:35+00:00 2026-06-13T23:12:35+00:00

I must send a Font file to my printer Zebra RW420 via bluetooth. Im

  • 0

I must send a Font file to my printer Zebra RW420 via bluetooth. Im using Zebra Windows Mobile SDK, but can’t find any way to send and store it on printer. I could do it manually by Label Vista but It must be done in 200+ printers.

Anyone have any suggestion or know what method from the SDK I could use?

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T23:12:36+00:00Added an answer on June 13, 2026 at 11:12 pm

    CISDF is the correct answer, it’s probably the checksum value that you are computing that is incorrect. I put a port sniffer on my RW420 attached to a USB port and found this to work. I actually sent some PCX images to the printer, then used them in a label later on.

    ! CISDF
    <filename>
    <size>
    <cksum>
    <data>
    

    There is a CRLF at the end of the 1st four lines. Using 0000 as the checksum causes the printer to ignore any checksum verification (I found some really obscure references to this in some ZPL manuals, tried it and it worked). <filename> is the 8.3 name of the file as it will be stored in the file system on the printer and <size> is the size of the file, 8 characters long and formatted as a hexadecimal number. <cksum> is the two’s complement of the sum of the data bytes as the checksum. <data> is, of course, the contents of the file to be stored on the printer.

    Here is the actual C# code that I used to send my sample images to the printer:

    // calculate the checksum for the file
    
    // get the sum of all the bytes in the data stream
    UInt16 sum = 0;
    for (int i = 0; i < Properties.Resources.cmlogo.Length; i++)
    {
      sum += Convert.ToUInt16(Properties.Resources.cmlogo[ i]);
    }
    
    // compute the two's complement of the checksum
    sum = (Uint16)~sum;
    sum += 1;
    
    // create a new printer
    MP2Bluetooth bt = new MP2Bluetooth();
    
    // connect to the printer
    bt.ConnectPrinter("<MAC ADDRESS>", "<PIN>");
    
    // write the header and data to the printer
    bt.Write("! CISDF\r\n");
    bt.Write("cmlogo.pcx\r\n");
    bt.Write(String.Format("{0:X8}\r\n", Properties.Resources.cmlogo.Length));
    bt.Write(String.Format("{0:X4}\r\n", sum));  // checksum, 0000 => ignore checksum
    bt.Write(Properties.Resources.cmlogo);
    
    // gracefully close our connection and disconnect
    bt.Close();
    bt.DisconnectPrinter();
    

    MP2Bluetooth is a class we use internally to abstract BT connections and communications – you have your own as well, I’m sure!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing an app which must send some files via bluetooth. A client recieves
I must send a struct between two machines via a udp socket the information
I want send e-mail with some images in content. I think I must attached
I'm trying to create a complex custom NSControl that must be able to send
Must be missing something really obvious here but how do you change the size
There must be a simple solution to this problem but for the love of
This must be a duplicate. But with so many NSPredicate questions out there, I
I must send copy of Form1 object to my method where I don't want
This is my first steps with XML and I must send a XML by
I have a need for a simple html + javascript page that must send

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.