BarcodeGeneratorMBS constants

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

Back to BarcodeGeneratorMBS class.

Output Options

BarcodeGeneratorMBS.OptionDMRE = 101

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.

BarcodeGeneratorMBS.OutputOptionBind = 2

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the output options.

Boundary bars above and below the symbol and between rows if stacking multiple symbols.
You can set BorderWidth for the size of the bind.

BarcodeGeneratorMBS.OutputOptionBoldText = 64

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.
Example

Dim z As New BarcodeGeneratorMBS

z.OutputOptions = z.OutputOptionBoldText

Use bold text.

BarcodeGeneratorMBS.OutputOptionBox = 4

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the output options.

Add a box surrounding the symbol and whitespace.
You can set BorderWidth for the size of the box.

BarcodeGeneratorMBS.OutputOptionCMYKColors = 128

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.
Example
dim z as new BarcodeGeneratorMBS
// enable CMYK
z.OutputOptions = z.OutputOptionCMYKColors

use CMYK colors for Postscript output.
For images, you can use plugin functions to convert RGB to CMYK if needed.

BarcodeGeneratorMBS.OutputOptionDottyMode = 256

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.

Raster in dotty mode.

BarcodeGeneratorMBS.OutputOptionGS1_GS_Separator = 512

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 19.4
One of the output options.

Use GS Separator for DataMatrix.

BarcodeGeneratorMBS.OutputOptionNoASCII = 1

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.

No longer used.

BarcodeGeneratorMBS.OutputOptionNone = 0

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the output options.

No box or boundary bars.

BarcodeGeneratorMBS.OutputOptionNoQuietZones = 4096

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 23.0
One of the output options.

Disable quiet zones, notably those with defaults as listed above.

BarcodeGeneratorMBS.OutputOptionQuietZones = 2048

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 23.0
One of the output options.

Add compliant quiet zones (additional to any specified whitespace)
Note: CODE16K, CODE49, CODABLOCKF, ITF14, EAN/UPC have default quiet zones

BarcodeGeneratorMBS.OutputOptionReaderInit = 16

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.

Include reader initialize sequence in barcode.

BarcodeGeneratorMBS.OutputOptionSmallText = 32

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.
Example

Dim z As New BarcodeGeneratorMBS

z.OutputOptions = z.OutputOptionSmallText

Use small text.

BarcodeGeneratorMBS.OutputOptionStdOut = 8

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the output options.

Write to stdout.

Symbology constants

BarcodeGeneratorMBS.BarcodeAuspost = 63

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Australia Post Standard Customer

BarcodeGeneratorMBS.BarcodeAusredirect = 68

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Australia Post Redirection

BarcodeGeneratorMBS.BarcodeAusreply = 66

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Australia Post Reply Paid

BarcodeGeneratorMBS.BarcodeAusroute = 67

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Australia Post Routing

BarcodeGeneratorMBS.BarcodeAzrune = 128

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Aztec Runes

BarcodeGeneratorMBS.BarcodeAztec = 92

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Aztec Code

BarcodeGeneratorMBS.BarcodeC25Iata = 4

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 2 of 5 IATA

BarcodeGeneratorMBS.BarcodeC25Ind = 7

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 2 of 5 Industrial

BarcodeGeneratorMBS.BarcodeC25Inter = 3

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Interleaved 2 of 5

BarcodeGeneratorMBS.BarcodeC25Logic = 6

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 2 of 5 Data Logic

BarcodeGeneratorMBS.BarcodeC25Matrix = 2

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Standard Code 2 of 5

BarcodeGeneratorMBS.BarcodeChannel = 140

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Channel Code

BarcodeGeneratorMBS.BarcodeCodabar = 18

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Codabar

BarcodeGeneratorMBS.BarcodeCodablockf = 74

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Coda Block F

BarcodeGeneratorMBS.BarcodeCode11 = 1

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 11

BarcodeGeneratorMBS.BarcodeCode128 = 20

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeCODE128
z.Encode "Hello World"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

Code 128 (automatic subset switching)

BarcodeGeneratorMBS.BarcodeCode128B = 60

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 128 (Subset B)

BarcodeGeneratorMBS.BarcodeCode16K = 23

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 16K

BarcodeGeneratorMBS.BarcodeCode32 = 129

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 32

BarcodeGeneratorMBS.BarcodeCode39 = 8

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeCode39
z.Encode "CODE39"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

Code 3 of 9 (Code 39)

BarcodeGeneratorMBS.BarcodeCode49 = 24

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 49

BarcodeGeneratorMBS.BarcodeCode93 = 25

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code 93

BarcodeGeneratorMBS.BarcodeCodeone = 141

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Code One

BarcodeGeneratorMBS.BarcodeDaft = 93

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

DAFT Code

BarcodeGeneratorMBS.BarcodeDatamatrix = 71

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeDatamatrix
z.Encode "Hello World"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

Data Matrix

BarcodeGeneratorMBS.BarcodeDotCode = 115

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the barcode symbology constants

DotCode

BarcodeGeneratorMBS.BarcodeDPD = 96

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 23.0
One of the barcode symbology constants

DPD Code.

BarcodeGeneratorMBS.BarcodeDpident = 22

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Deutsche Post Identcode

BarcodeGeneratorMBS.BarcodeDpleit = 21

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Deutsche Post Leitcode

BarcodeGeneratorMBS.BarcodeEan128 = 16

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeEan128
z.Encode "[00]993262210000005384"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

GS1-128

BarcodeGeneratorMBS.BarcodeEan128Cc = 131

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with GS1-128 linear component

BarcodeGeneratorMBS.BarcodeEan13 = 13

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 14.2
One of the barcode symbology constants

BarcodeGeneratorMBS.BarcodeEan14 = 72

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

EAN-14

BarcodeGeneratorMBS.BarcodeEan8 = 13

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 14.2
One of the barcode symbology constants

BarcodeGeneratorMBS.BarcodeEANCheck = 14

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the barcode symbology constants

EAN Checks

BarcodeGeneratorMBS.BarcodeEanx = 13

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeEanX
z.Encode "7432365+54321"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

EAN

BarcodeGeneratorMBS.BarcodeEanxCc = 130

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with EAN linear component

BarcodeGeneratorMBS.BarcodeExcode39 = 9

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Extended Code 3 of 9 (Code 39+)

BarcodeGeneratorMBS.BarcodeFim = 49

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

FIM

BarcodeGeneratorMBS.BarcodeFlat = 28

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Flattermarken

BarcodeGeneratorMBS.BarcodeGridmatrix = 142

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Grid Matrix

BarcodeGeneratorMBS.BarcodeHanXin = 116

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the barcode symbology constants

HanXin

BarcodeGeneratorMBS.BarcodeHibc128 = 98

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC Code 128

BarcodeGeneratorMBS.BarcodeHibc39 = 99

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC Code 39

BarcodeGeneratorMBS.BarcodeHibcAztec = 112

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC Aztec Code

BarcodeGeneratorMBS.BarcodeHibcBlockf = 110

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC Block F

BarcodeGeneratorMBS.BarcodeHibcDm = 102

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC Data Matrix

BarcodeGeneratorMBS.BarcodeHibcMicpdf = 108

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC MicroPDF417

BarcodeGeneratorMBS.BarcodeHibcPdf = 106

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC PDF417

BarcodeGeneratorMBS.BarcodeHibcQr = 104

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

HIBC QR Code

BarcodeGeneratorMBS.BarcodeIsbnx = 69

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

ISBN (EAN-13 with verification stage)

BarcodeGeneratorMBS.BarcodeItf14 = 89

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

ITF-14

BarcodeGeneratorMBS.BarcodeJapanpost = 76

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Japanese Post

BarcodeGeneratorMBS.BarcodeKix = 90

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Dutch Post KIX Code

BarcodeGeneratorMBS.BarcodeKoreapost = 77

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Korea Post

BarcodeGeneratorMBS.BarcodeLogmars = 50

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

LOGMARS

BarcodeGeneratorMBS.BarcodeMailMark = 121

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 19.3
One of the barcode symbology constants

Mailmark

BarcodeGeneratorMBS.BarcodeMaxicode = 57

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Maxicode

BarcodeGeneratorMBS.BarcodeMicropdf417 = 84

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

MicroPDF417

BarcodeGeneratorMBS.BarcodeMicroqr = 97

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Micro QR Code

BarcodeGeneratorMBS.BarcodeMsiPlessey = 47

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

MSI Plessey

BarcodeGeneratorMBS.BarcodeNve18 = 75

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

NVE-18

BarcodeGeneratorMBS.BarcodeOnecode = 85

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

USPS OneCode

BarcodeGeneratorMBS.BarcodePdf417 = 55

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodePdf417
z.Encode "Hello World, Just a test. 123"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

PDF417

BarcodeGeneratorMBS.BarcodePdf417Trunc = 56

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

PDF417 Truncated

BarcodeGeneratorMBS.BarcodePharma = 51

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Pharmacode One-Track

BarcodeGeneratorMBS.BarcodePharmaTwo = 53

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Pharmacode Two-Track

BarcodeGeneratorMBS.BarcodePlanet = 82

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

PLANET

BarcodeGeneratorMBS.BarcodePlessey = 86

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Plessey Code

BarcodeGeneratorMBS.BarcodePostnet = 40

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

PostNet

BarcodeGeneratorMBS.BarcodePzn = 52

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

PZN

BarcodeGeneratorMBS.BarcodeQrcode = 58

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeQrcode
z.Encode "Hello World"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

QR Code

BarcodeGeneratorMBS.BarcodeRm4Scc = 70

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Royal Mail 4 State (RM4SCC)

BarcodeGeneratorMBS.BarcodeRss14 = 29

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

GS1 DataBar-14

BarcodeGeneratorMBS.BarcodeRss14Cc = 132

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with GS1 DataBar-14 linear component

BarcodeGeneratorMBS.BarcodeRss14OmniCc = 138

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with GS1 DataBar-14 Stacked Omnidirectional component

BarcodeGeneratorMBS.BarcodeRss14Stack = 79

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

GS1 DataBar-14 Stacked

BarcodeGeneratorMBS.BarcodeRss14StackCc = 137

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with GS1 DataBar-14 Stacked component

BarcodeGeneratorMBS.BarcodeRss14StackOmni = 80

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

GS1 DataBar-14 Stacked Omnidirectional

BarcodeGeneratorMBS.BarcodeRssExp = 31

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

GS1 DataBar Expanded

BarcodeGeneratorMBS.BarcodeRssExpCc = 134

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with GS1 DataBar Extended component

BarcodeGeneratorMBS.BarcodeRssExpstack = 81

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

GS1 DataBar Expanded Stacked

BarcodeGeneratorMBS.BarcodeRssExpstackCc = 139

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with GS1 DataBar Expanded Stacked component

BarcodeGeneratorMBS.BarcodeRssLtd = 30

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

GS1 DataBar Limited

BarcodeGeneratorMBS.BarcodeRssLtdCc = 133

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with GS1 DataBar Limited component

BarcodeGeneratorMBS.BarcodeTelepen = 32

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Telepen Alpha

BarcodeGeneratorMBS.BarcodeTelepenNum = 87

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Telepen Numeric

BarcodeGeneratorMBS.BarcodeUltra = 144

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 19.4
One of the barcode symbology constants

Ultra

BarcodeGeneratorMBS.BarcodeUpca = 34

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeUpca
z.Encode "72527270270+12345"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

UPC A

BarcodeGeneratorMBS.BarcodeUpcaCc = 135

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with UPC A linear component

BarcodeGeneratorMBS.BarcodeUPCACheck = 35

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the barcode symbology constants

UPCA Check

BarcodeGeneratorMBS.BarcodeUpce = 37

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants
Example
Dim z As New BarcodeGeneratorMBS

z.Symbology = BarcodeGeneratorMBS.BarcodeUpcE
z.Encode "1123456"

Dim pic As Picture = z.picture
If z.LastError <> 0 Then
MessageBox "LastError: "+Str(z.LastError)
Else
window1.Backdrop = pic
End If

UPC E

BarcodeGeneratorMBS.BarcodeUpceCc = 136

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the barcode symbology constants

Composite Symbol with UPC E linear component

BarcodeGeneratorMBS.BarcodeUPCECheck = 38

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 16.5
One of the barcode symbology constants

UPCE Check

BarcodeGeneratorMBS.BarcodeUPNQR = 143

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 19.3
One of the barcode symbology constants

UPNQR

BarcodeGeneratorMBS.BarcodeVin = 73

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 19.3
One of the barcode symbology constants

Vin

The items on this page are in the following plugins: MBS Barcode Plugin.


💬 Ask a question or report a problem