Platforms to show: All Mac Windows Linux Cross-Platform

Back to BarcodeGeneratorMBS class.

Previous items Next items

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

BarcodeGeneratorMBS.ErrorEncodingProblem = 9

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the error constants.

A problem has occurred during encoding of the data. This should never happen. Please contact the developer if you encounter this error.

BarcodeGeneratorMBS.ErrorFileAccess = 10

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the error constants.

Zint was unable to open the requested output file. This is usually a file permissions problem.

BarcodeGeneratorMBS.ErrorFileWrite = 12

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 23.0
One of the error constants.

Error writing to output file.

BarcodeGeneratorMBS.ErrorInvalidCheck = 7

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the error constants.

An ISBN with an incorrect check digit has been entered. No symbol has been generated.

BarcodeGeneratorMBS.ErrorInvalidData = 6

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the error constants.

The data to be encoded includes characters which are not permitted by the selected symbology (e.g. alphabetic characters in an EAN symbol). No symbol has been generated.

BarcodeGeneratorMBS.ErrorInvalidOption = 8

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the error constants.

One of the values in zint_struct was set incorrectly and Zint was unable to guess what it should have been. No symbol has been generated.

BarcodeGeneratorMBS.ErrorMemory = 11

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the error constants.

Zint ran out of memory. This should only be a problem with legacy systems.

BarcodeGeneratorMBS.ErrorNonComppilant = 14

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 23.0
One of the error constants.

Error reporting that symbol created is not compliant with standards.

BarcodeGeneratorMBS.ErrorTooLong = 5

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the error constants.

The input data is too long or too short for the selected symbology. No symbol has been generated.

BarcodeGeneratorMBS.ErrorUsesECI = 13

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 23.0
One of the error constants.

Error reporting that ECI is needed.

BarcodeGeneratorMBS.InputModeData = 0

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the input mode constants.

Uses full ASCII range interpreted as Latin-1 or binary data.

BarcodeGeneratorMBS.InputModeEscape = 8

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 19.3
One of the input mode constants.

Additional flag to escape.

BarcodeGeneratorMBS.InputModeGS1 = 2

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the input mode constants.

Encodes GS1 data using FNC1 characters.

BarcodeGeneratorMBS.InputModeKanji = 3

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the input mode constants.

Kanji

BarcodeGeneratorMBS.InputModeSJIS = 4

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the input mode constants.

SJJS

BarcodeGeneratorMBS.InputModeUnicode = 1

Type Topic Plugin Version
const Barcode MBS Barcode Plugin 13.5
One of the input mode constants.

Uses pre-formatted UTF-8 input.

BarcodeGeneratorMBS.OptionDMRE = 101

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

BarcodeGeneratorMBS.OptionSquare = 100

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

An extra feature is available for Data Matrix symbols which allows Zint to automatically resize the symbol as required but also prevents Zint from using rectangular symbols. To set this mode set the value Option3 = OptionSquare.

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.

Previous items Next items

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


💬 Ask a question or report a problem
The biggest plugin in space...