Zebra DevTalk | Integrating with Windows VIa Link-OS C# SDK | December 2017

Sdílet
Vložit
  • čas přidán 27. 12. 2017
  • In this month's DEVTALK on integrating Zebra printers, we will walk you through code samples, best practices, tips and tricks, and how to write apps for Windows desktops.
    For more information about this topic and other Developer related topics, visit bit.ly/3xOuBqD.
    Interested in learning more about Zebra's software suite? Visit bit.ly/3YWb5Ew to find out more.
    #devtalk #zebratechnologies #devtalks
  • Věda a technologie

Komentáře • 27

  • @zoheirkaram
    @zoheirkaram Před 5 lety

    Thank you for sharing this video, I Love it. do you guys have a demo using Bluetooth connection? As per Zebra techdocs it's also straight forward, is there any tips need to know for this kind of connections?

  • @FesliyanStudios
    @FesliyanStudios Před 5 lety

    Trying to find out if I can program RFID tags in my own .net application via Zebra RFID printer?

  • @AlanBazan0
    @AlanBazan0 Před 2 lety +2

    is there any printer simulator or something? I dont have a printer for development

  • @avdheshprasad798
    @avdheshprasad798 Před 5 lety

    Hi , can you please me ??
    Actually I need to connect zebra mobile printer with my application by Bluetooth my app is in xamarin iOS native. Please have you any idea about it

  • @alextan4218
    @alextan4218 Před 5 lety

    How can I get the download link will for the Zebra SDK v2.13.898 ?

  • @andreyterentev9893
    @andreyterentev9893 Před rokem

    Hi. in Zebra Designer 3 I made a file (label) datamatrix + text. If you just print the file from the program, everything is ok. I then uploaded the file to prn-file (print-save to file). How can I print this file from visual studio? I tried to insert the text of the file into a variable, but not everything is printed and not in those proportions. How can I print the file right away? with zebra sdk there was an example of printing from a file, but I print an empty sheet in general. can't find file

  • @emanuelbaldissera6510
    @emanuelbaldissera6510 Před 4 lety

    The link on the description is broken. Can you update it please?

  • @kevinalexismartinezherrera7004

    Thank´s for the video, how can I make? if I want connect through a cable not by TCP/IP

  • @jayprajapati29796
    @jayprajapati29796 Před 4 lety

    great video but the link is not working
    can you help me with that?

  • @kylehemming966
    @kylehemming966 Před 2 lety +1

    I'm trying to print multiple copies of the same label. Is the only way to do that to loop through the PrintOneLabelTask x number of times or is there a way to tell the printer I just need x copies of this one label?

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 2 lety

      Thank you for reaching out. We recommend you visit our Developer Portal: social.zebra.com/6059j3pLH. There are dev experts there that can assist you.

  • @danielneagu4591
    @danielneagu4591 Před 8 měsíci

    is there an updated versione for the .Net versione? Not in .Net Framework anymore but in .Net Core 6> ? THKS

  • @mingled2234
    @mingled2234 Před 3 lety

    I found that I needed to try PrintHelper.Connect multiple times with the SDK. Otherwise too many "Unable to determine printer type." errors.
    ZebraCardPrinter zebraCardPrinter = null;
    Connection connection = new Zebra.Sdk.Comm.TcpConnection(ip, 9100);
    zebraCardPrinter = PrintHelper.Connect(connection);
    // Retry if card printer null
    if (zebraCardPrinter == null)
    {
    var tries = 3;
    while (true)
    {
    try
    {
    log.Info("Retry connect to printer at " + ip + ", retries remaining: " + tries);
    zebraCardPrinter = PrintHelper.Connect(connection);
    if (zebraCardPrinter != null)
    break; // success!
    }
    catch
    {
    if (--tries == 0)
    {
    msg = "Unable to find and connect to printer at " + ip;
    log.Error("Unable to find and connect to printer at " + ip);
    }
    throw;
    }
    Thread.Sleep(1000);
    }
    }

  • @eduardoguerere5725
    @eduardoguerere5725 Před 5 lety

    hello thanks for the video, does sdk exist for ttp 8000 printers?

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 5 lety

      Hello, for more information on this topic or any questions you might have, please visit our developer portal at: developer.zebra.com/community/welcome

  • @wiseguysby
    @wiseguysby Před 3 lety

    I've zebra zd230t, i would like print barcode label 2 sides, howto sample code for that?

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 3 lety

      Hi Sulthan, Thank you for your question. To help answer your query, you can visit our developer community at social.zebra.com/6056njqqK.

  • @himadri_nath
    @himadri_nath Před 3 lety

    i am using winForm .net core 3.1 installed Zebra.Printer.SDK 2.15.2634 form nuget . but it unable to resolve UsbDiscoverer class

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 3 lety

      Hi, thank you for your comment, to help you with your query, please do visit: www.zebra.com/us/en/support-downloads/printers.html

  • @balevijay
    @balevijay Před 5 lety +1

    is there any API for gc420t label printer to use in C#

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 5 lety

      Hello, please visit our developer portal to learn more about this topic and get any questions answered about this video: developer.zebra.com/community/welcome

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 5 lety

      Hello, for more information on this topic or any questions you might have, please visit our developer portal at: developer.zebra.com/community/welcome

  • @NaveenSharma39
    @NaveenSharma39 Před 3 lety

    I didn't find any sdk or api for python

  • @sebssg
    @sebssg Před 6 lety

    Can you share the code for the print Helper class. Thanks for the video. it was very helpful

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 6 lety

      Hello Sebastian, the sample code for this DevTalk is on the DevPortal post about this talk which can be found here: developer.zebra.com/community/home/blog/2017/11/08/dev-talk-wednesday-december-15th-10-am-cdt-integrating-zebra-printers-with-windows-via-the-new-link-os-c-sdk

  • @michaelliu2079
    @michaelliu2079 Před 5 lety

    Thank you, can you share the code used in the video?

    • @ZebraTechnologiesGlobal
      @ZebraTechnologiesGlobal  Před 5 lety

      Hello, for more information on this topic or any questions you might have, please visit our developer portal at: developer.zebra.com/community/welcome