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

preview_player
Показать описание
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.
#devtalk #zebratechnologies #devtalks
Рекомендации по теме
Комментарии
Автор

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

AlanBazan
Автор

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?

kylehemming
Автор

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

danielneagu
Автор

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

andreyterentev
Автор

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

emanuelbaldissera
Автор

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

kevinalexismartinezherrera
Автор

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

wiseguysby
Автор

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

jayprajapati
Автор

I didn't find any sdk or api for python

NaveenSharma
Автор

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

balevijay
Автор

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?

zoheirkaram
Автор

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

himadri_nath
Автор

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

FesliyanStudios
Автор

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

alextan
Автор

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

avdheshprasad
Автор

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

eduardoguerere
Автор

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

michaelliu
Автор

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

sebssg
Автор

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 =

// 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 =
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);
}
}

mingled