Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7 19
Chapter 2 Program Instructions
BARCODENAME$
Field of Application
Function returning the names of the bar code generators stored in the
printer’s temporary memory ("tmp:").
Syntax BARCODENAME$(<nexp>)
<nexp> the result of the expression should be either false or
true, where...
False (0) indicates fi rst font.
True (≠0) indicates next font.
Remarks
BARCODENAME$(0) produces the fi rst bar code name in alphabetical
order. BARCODENAME$(≠0) produces next name. Can be repeated as
long as there are any bar code names left.
Example
Use a program like this to list the names of all bar codes in "tmp:". Note that bar
codes with dynamic downloading (like DATAMATRIX) will not appear before
they have been called by a BARSET or BARTYPE statement.
10 A$ = BARCODENAME$ (0)
20 IF A$ = "" THEN END
30 PRINT A$
40 A$ = BARCODENAME$ (-1)
50 GOTO 20
RUN
yields for example:
CODABAR
CODE11
CODE16K
CODE39
CODE39A
CODE39C
CODE49
CODE93
CODE128
DUN
EAN8
EAN13
EAN128
ADDON5
C2OF5IND
C2OF5INDC
INT2OF5
INT2OF5C
etc, etc.