跳至主內容

搜尋

搜尋

Print multiple labels

評論

3 條評論

  • Avatar
    Peter Thane

    Have you thought about outputting the numbers to a Text file with a set name and either use Integration Builder to print the labels automatically or link the label to the text file as if it were a database and then run the print command so that it prints all the records? 

    0
  • Avatar
    Natia Svanidze

    I transfer the values of serials to the function, I don't need to use a text file.
    Is there a way  to print multiple labels with different values from the same template in one print job.

    Please tell me how I can change code from here in c# :

      foreach (string serial in serialNumbers)
      {
          if (serial == "") {
              continue;
          }
          // Set the serial number to the label
          btFormat.SubStrings.SetSubString("fld_KitSn", serial);
          Result nResult = btFormat.Print(LabelName + PrinterName + pcbSn, out          btMessages);

      }
    0
  • Avatar
    Peter Thane

    Not as a single print command as far as I am aware, you would need to run a different print command for each or else configure as above 

    0

登入寫評論。