Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7190
Chapter 2 Program Instructions
PRBAR (PB)
Field of Application
Statement for providing input data to a bar code.
Syntax PRBAR|PB<<sexp>|<nexp>>
<<sexp>|<nexp>> is the input data to the bar code generator.
Remarks
The bar code must be de ned by BARSET, BARTYPE, BARRATIO,
BARHEIGHT, BARMAG, BARFONT, and/or BARFONT ON/OFF
statements, or by the corresponding default values.
Make sure that the type of input data (numeric or string) and the number
of characters agree with the speci cation for the selected bar code type.
Information on some of the most commonly used bar codes are provided
at the end of this manual.
Example
Two different bar codes, one with numeric input data and one with string
input data, can be generated this way. The input data could also have been
entered in the form of variables:
10 BARFONT "Swiss 721 BT", 8 ON
20 PRPOS 50,400
30 ALIGN 7
40 BARSET "INT2OF5",2,1,3,120
50 PRBAR 45673
60 PRPOS 50,200
70 BARSET "CODE39",3,1,2,100
80 PRBAR "ABC"
90 PRINTFEED
RUN