R
Robert Muzzy
Guest
We recently purchased a Seiko Smart Label Printer (SLP) 620 and it came with some sample SDKs for C#. I am trying to integrate label printing into my application without using their Smart Label Creator Software. Going through their sample SDK first off doesn't really provide any functioning code and their documentation is terrible. You can see the documentation for the SDK (Documentation), I tried calling their Support Number and they don't support their SDK at all.
Im trying to get the barcode to render at 18 point in Code128
I have this currently
private static void Code128BarCode()
{
SlpApi.SlpOpenPrinter("Smart Label Printer 620", SlpApi.Size_Shipping, false);
if (SlpApi.SlpStartLabel())
{
SlpApi.SlpSetBarCodeStyle(SlpApi.SLP_BC_CODE128, 0, 0, 0, false, 12, 0, "");
SlpApi.SlpDrawBarCode(1, 1, 400, 65, "CM_2157_1907834");
SlpApi.SlpEndLabel();
SlpApi.SlpClosePrinter();
}
}
Continue reading...
Im trying to get the barcode to render at 18 point in Code128
I have this currently
private static void Code128BarCode()
{
SlpApi.SlpOpenPrinter("Smart Label Printer 620", SlpApi.Size_Shipping, false);
if (SlpApi.SlpStartLabel())
{
SlpApi.SlpSetBarCodeStyle(SlpApi.SLP_BC_CODE128, 0, 0, 0, false, 12, 0, "");
SlpApi.SlpDrawBarCode(1, 1, 400, 65, "CM_2157_1907834");
SlpApi.SlpEndLabel();
SlpApi.SlpClosePrinter();
}
}
Continue reading...