Questions tagged [code39]

Code 39 is a variable length, discrete barcode symbology.

The Code 39 specification defines 43 characters, consisting of uppercase letters (A through Z), numeric digits (0 through 9) and a number of special characters (-, ., $, /, +, %, and space). An additional character (denoted '*') is used for both start and stop delimiters. Each character is composed of nine elements: five bars and four spaces. Three of the nine elements in each character are wide (binary value 1), and six elements are narrow (binary value 0). The width ratio between narrow and wide can be chosen between 1:2 and 1:3.

52 questions
0
votes
1 answer

How can I adjust the top and bottom borders of a barcode created with python-barcode?

I'm using barcode.Code39 and barcode.writer.ImageWriter from the python-barcode library (version 0.15.1) to create a simple barcode and dump it to a PNG. I was able to control the left and right borders using the quiet_zone option and remove the…
OptiAndrew
  • 27
  • 6
0
votes
1 answer

Code 39 type barcode scanning issue using AVCam

I'm using the following example application for barcode scanning: https://github.com/xamarin/ios-samples/tree/main/ios11/AVCamBarcode It scans all the barcode types perfectly, but when it comes to Code 39 type barcodes I get strange results. Example…
0
votes
1 answer

How to convert $ character with Code39 in CrystalReports?

I need to display a numeric value (document number) as barcode. I use Code39 to convert. It is important to concatenate %-character as first, and $-character as last character to my number. Here is my code: Code39Full ("%" & ToText({Command.DocNum},…
LewoSoft
  • 73
  • 1
  • 2
  • 12
0
votes
0 answers

Printing Code 39 Barcodes on EPSON FX-890IIN using escape codes in PLSQL

I have a longshot question. We are using the printer listed above and are trying to get Code 39 barcodes to print from it. I have looked at the following documentation https://files.support.epson.com/pdf/general/escp2ref.pdf specifically the top of…
0
votes
2 answers

Underscore in bar code code 39 disappear when scanning

enter image description hereI use bar code code 39 extended to create bar code. In my software the code is good. Ex. 607A_QIT002-0004. When I scan the code I received 607A QIT002-0004. The _ have changed for a space. My scanner is in extended…
Dominic
  • 3
  • 3
0
votes
1 answer

Code 39 barcode scans a different value when using a USB scanner and a phone camera scanner

Really hope that somebody will be able to help with this as I'm near losing my mind trying to understand why this happens. I'm getting different results when scanning the same value in a Code 39 barcode using a regular USB barcode scanner and using…
0
votes
1 answer

Skip special characters when printing code 39 using ZPL

I am trying to print code 39 Barcode using zebra ZPL. My Field Data is as follows : ^FDabc-def^etc.. Is there a command that will help skip the "-" in the Barcode? I only need to print "abcdef" without the special character. Thanks.
J Doe
  • 49
  • 5
0
votes
2 answers

generate code39 barcode data in java?

I'm trying to generate code39 data. It has some requirement as follows: /* Code 39 Valid data char set: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits) A - Z (Uppercase letters) - (Dash), $ (Dollar), % (Percentage),…
Feras Odeh
  • 9,136
  • 20
  • 77
  • 121
0
votes
0 answers

A-B Barcode Scan System -- Code39 Symbology Options

A customer is requiring that our company use an A-B Scan System to confirm 2 different container/master labels contain the same Part# barcodes on every container and every shipment. The issue is that both barcodes contain identical information -- so…
0
votes
0 answers

Using a mutex in a Windows 10 device driver resulting in code 39

I'm developing a Windows 10 device driver for a virtual camera based off the avstream/avscamera example in the windows driver samples repository. The driver will gets its frames from a separately run Windows app via shared memory synchronized by a…
Eric Davies
  • 78
  • 1
  • 9
0
votes
0 answers

Code39 printed on labeler is unreadeable

I'm trying to print a code39 with a labeler (argox x-2300e) so the code is this (i deleted all the stuff to print just a barcode to test): Imports System.ComponentModel Imports System.Drawing.Printing Public Class Form1 Dim linea1 As String =…
0
votes
0 answers

Code 39 barcode colon character, C# pattern

I am working on a C# project involving Code 39 barcode generation. I have been tasked with trying to add a colon character ":". I'm not very knowledgeable on this stuff, hence the question, I've done some research on this, and am a little…
Jimmy Goodson
  • 65
  • 1
  • 10
0
votes
2 answers

What is the substitute for the 'space' character in code 39 barcode font?

I'm writing a customization for MFG/Pro ERP. My program has a couple of 1-D barcodes which are printed and are getting read correctly. However, whenever there is a space in the text to be barcoded, the barcode has a hole/space in the printed…
SJaka
  • 712
  • 13
  • 40
0
votes
1 answer

Add margin to barcode image using C#

I'm creatin a Code39 barcode image with C# and I need to add margin to this image. This is the first image which I created. I created it. But it should be like this. It should be like this. The code is complicated. This code is creating barcode…
0
votes
0 answers

Barcode39 print tab key along with barcode

Requirement is like, I've 2 textboxes and only one barcode. when i scan the barcode, both textboxes should get filled with value. navigate from one textbox to another textbox is tab control (default) textbox 1 (Name), and textbox 2 (Age). barcode…
Rassal KP
  • 171
  • 1
  • 11