- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
VB.NET Code 39 Generator Data Encoding Tutorialsample source code to input valid data and generate linear Code 39 images in VB.NET
Setup Code 39 VB.NET GeneratorCode 39, also known as Alpha39, Code 3 of 9, Code 3/9, Type 39, USS Code 39, or USD-3, is the first alpha-numeric linear barcode symbology used world-wide. OnBarcode.com provides more details about how to set Code 39 barcode size and image in Barcode Generator Control on VB.NET:
Code 39 VB.NET Generator installation
1. Download the trial package and unzipAfter, get it ready in VB.NET by placing the following statement where Code 39 VB.NET Generator is needed: Dim code39 As OnBarcode.Barcode.Linear Select Data for Code 39 VB.NET Generator
There are three code sets of Code 39. They are code set A, code set B, and code set C. Code 39 in different code set encodes different types of data character. Generate Code 39 with Numeric Character
Code 39 is capable of encoding number 0 to 9. Dim code39 As OnBarcode.Barcode.Linear = New OnBarcode.Barcode.Linear Generate Code 39 using Uppercase Letters
Code 39 encodes uppercase letters A-Z. Dim code39 As OnBarcode.Barcode.Linear = New OnBarcode.Barcode.Linear Make Code 39 using using Punctuations
Code 39 encodes - (Dash),. (Point), $ (Dollar), / (Slash), + (Plus) % (Percentage), and (Space). Dim code39 As OnBarcode.Barcode.Linear = New OnBarcode.Barcode.Linear Process Tilde in Code 39
If you want to use the tilde character "~" to specify special characters in the input data, please set property ProcessTilde to be true. 1-byte character: ~0dd/~1dd/~2dd (character value from 000 ~ 255); ASCII character '~' is presented by ~126 Strings from "~256" to "~299" are unused
Sample Usage: code39.ProcessTilde = True Valid length for Data in Code 39 VB.NET GeneratorCode 39 Data Length
Code 39 is variable length symbology, which easily encodes data at any length. Data Length in Code 39 VB.NET Generator
The value of property Data, which is used to define the data in Code 39, is a string value. You can input data at any length in the string. Dim code39 As OnBarcode.Barcode.Linear = New OnBarcode.Barcode.Linear
Sample Usage: Dim code39 As OnBarcode.Barcode.Linear = New OnBarcode.Barcode.Linear |