Questions tagged [code128]

A very high-density barcode semiotics used for alphanumeric or numeric-only barcodes.

Code 128 is a very high-density barcode semiotics. It is used for alphanumeric or numeric-only barcodes. It can encode all 128 characters of ASCII and, by use of an extension character (FNC4), the Latin-1 characters defined in ISO/IEC 8859-1

144 questions
0
votes
0 answers

Enabling Barcode128 in Excel?

I am trying to use Code128 barcodes in Excel. I installed the Barcode128 font and followed this tutorial. But I just get this error. Anyone have experience getting this to work? Installed Barcode128 font Created a new Excel document Added VBA code…
0
votes
0 answers

Not working Code128 in CKeditor in Angular

I am trying to install Code 128 font for Barcode in CKEditor. but somehow generated Barcode is not scanned properly in APP. (always getting wrong data) Can you please help me to resolve the issue?
Darshit Gandhi
  • 121
  • 1
  • 7
0
votes
1 answer

How to generate Code128 barcodes and print

I was tasked with trying to create a VBA Macro that will generate barcodes based on the values I have and also create a button that will print only the barcodes and not the values. I have found online some options to generate the barcodes but the…
Matthew
  • 5
  • 4
0
votes
0 answers

Scanning Code-128 barcodes issue in iOS (AVFoundation)

I'm working on adding new barcode scanning functionality to my application. Decided to use AVFoundation for that purposes. Implemented everything as in many examples on the Internet. In metadataObjectTypes indicated only one…
XDev
  • 111
  • 7
0
votes
2 answers

How to encode a TAB character in a Code128 barcode using only raw ZPL

In the past, we've used ZPL to create Code39 barcodes with a TAB character encoded in the middle using something similar to the following: *USERNAME$IPASSWORD* The $I in the middle gets translated to a TAB by the barcode scanners we use. Now we…
dsumner
  • 31
  • 1
  • 7
0
votes
0 answers

Why does my Code-128 Barcode Encoder not work?

So, I have a block of text in which there is a barcode. For this I use the Code128 font to display text as a barcode. But it doesn't work that easy with Code 128. So I took the following Encode in the hope that my text would be changed into a…
user17667316
0
votes
1 answer

Android Studio generating Code128 barcode question

I am trying to execute the Code128 tutorial according to this website: http://www.onbarcode.com/products/android_barcode/barcodes/code_128.html, but I have no idea how to display the barcode. Here is the Java code: public class MainActivity extends…
sidek22
  • 1
  • 1
0
votes
0 answers

Generating Code 128 Barcode using Microsoft Word

I'm trying to generate a Code 128 Barcode using Micorosft Word 2013 or 2019 and VBA using the following function: Public Function GenerateCode128B(SourceStruing As String) Dim checkDigitValue As Integer Dim barcodeString As String Dim…
0
votes
1 answer

How can I autogenerate Code128 in Adobe Forms once I have the font?

I am trying to get Adobe Form to autogenerate a Code128 in a text field by its self when text is input in another text field. I know there is Code128 font, and I have found a bunch of postscript stuff. I am just wondering IF I have to purchase the…
0
votes
1 answer

Calculate checksum digit for a barcode of type Code128

I have to calculate a checksum digit for a barcode of type Code128 in C#, similar to this post: https://support.idautomation.com/Code-128/Manually-calculate-check-digit-for-Code-128/_1025 I read this page which gives some calculation examples:…
Martin
  • 5,165
  • 1
  • 37
  • 50
0
votes
1 answer

How to include barcode value with actual barcode Python `code128` module

I just built a quick Python Azure Function that generates a barcode. The response is ONLY the rendered barcode in .png format. I also need the barcode VALUE to be displayed below it. Example: import logging import azure.functions as func import…
SeaDude
  • 3,725
  • 6
  • 31
  • 68
0
votes
0 answers

Code128 in Report in MS Access

I looked for a solution around the Internet to be able to show Code128 in a report in MS Access. However, downloading a font that just shows the characters in code-128 was not working. My scanner would just not scan the barcode. Since all other…
Salatgurke
  • 1,554
  • 1
  • 13
  • 35
0
votes
1 answer

Zebra Barcode prints, but doesn't scan

I need to print a 17 digit barcode. Values are coming from parameters. Barcode is printed ok, all parameters are there, it looks good, but it doesn't scan anything with the scanner. This is what i…
0
votes
1 answer

Checking a ITF or Code 128 bar code integrity in a final string

There is a software that is able either to receive bar codes scanned by bar code scanner app or enter them manually. With EAN everything is pretty clear: it contains a checking digit and using a special algorithm I can check code integrity when code…
Paul
  • 25,812
  • 38
  • 124
  • 247
0
votes
2 answers

Barcode png Image printed on a Label of 40mm x 15mm size is shrunk to 20mm x10mm when printed and not getting scanned

I am facing this issue where I am generating a barcode using code128 and saving it in a PNG file. The same PNG file when supplied to a printer Job with required Document properties for printing on a Label of required size, the size gets reduced and…