Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7212
Chapter 2 Program Instructions
PRTXT (PT), cont.
Examples, cont.
Numeric constants and numeric variables can be combined by the
use of semicolons, but plus signs cannot be used in connection with
numeric expressions:
10 FONT "Swiss 721 BT"
20 PRPOS 30,300
30 PRTXT 123;456
40 A%=222
50 B%=555
60 PRPOS 30,200
70 PRTXT A%;B%
80 PRINTFEED
RUN
yields a label with the text:
123456
222555
Numeric and string expressions can be mixed on the same line, for
example:
10 FONT "Swiss 721 BT"
20 PRPOS 30,300
30 A$="December"
40 B%=27
50 PRTXT A$;" ";B%;" ";"2000"
80 PRINTFEED
RUN
yields a label with the text:
December 27 2000
Two program lines of text will be printed on the same line if the rst program
line is appended by a semicolon:
10 FONT "Swiss 721 BT"
20 PRPOS 30,300
30 PRTXT "HAPPY"+" ";
40 PRTXT "BIRTHDAY"
50 PRINTFEED
RUN
yields a label with the text:
HAPPY BIRTHDAY