GEK-00029B 5000 Series Programmer’s Manual
53
Changing Parameters
This example changes the style p1, height p2, and the HRL font p9 of
the bar code. Notice that semicolons are used as place holders for the
parameters not being changed.
Line 10 - changes style to Code 128, changes height to 1/ 4" (3/12").
and use the special HRL font.
10 LPRINT CHR$(27);"[16;3;;;;;;;1;}
20 LPRINT CHR$(27); "[3t";
30 LPRINT "1234567890";
40 LPRINT CHR$(27); "[0t"
Commas and Spaces as Delimiters
When a comma delimiter is used to separate bar codes, no additional
space Is added to the quiet zones. Since the ending .25-inch quiet
zone of one bar code symbol meets the beginning quiet zone of the
next bar code, a total of .50-inch separates the two. Style 7 (line 5) is
used for these examples since Code 11 uses both spaces and com mas
as delimiters.
10 LPRINT CHR$(27); "[7}";
20 LPRINT CHR$(27); "[3t";
30 LPRINT "1234,56,7890";
40 LPRINT CHR$(27); "[0t"
When spaces are used as delimiters, an additional 1-inch is added to
the quiet zones. Note that multiple spaces can be used.
10 LPRINT CHR$27); "[3t"
20 LPRINT "1234 56 7890";
30 LPRINT CHR$27); "[0t"