Programming instructions
16
Intermec Fingerprint 6.13 – Programmer's Guide
3. CREATING A SIMPLE LABEL, cont'd.
6. Printing Text
Continued!
7. Listing the Program
Add a line of text at position X=25,Y=200:
80 PRPOS 25,200 ↵
90 FONT "SW030RSN" ↵
100 PRTXT "My FIRST Label" ↵
RUN ↵
To view the whole program, type:
LIST ↵
The program lines will be listed in ascending order on your
terminal's screen:
1 BARFONT ON
2 BARFONT "SW030RSN"
10 PRPOS 10,10
20 PRBOX 400,300,10
30 PRPOS 25,25
40 PRIMAGE "GLOBE.1"
50 PRPOS 75,250
60 BARTYPE "CODE39"
70 PRBAR "ABC"
80 PRPOS 25,200
90 FONT "SW030RSN"
100 PRTXT "My FIRST label"
200 PRINTFEED
300 END
ok
If you want to change a program line, simply rewrite the line using
the same line number. For example, move the text to the right by
rewriting line number 80 with new coordinates:
80 PRPOS 75,200 ↵
RUN ↵
8. Changing a Program
Line
☞
Program Editing and Listing
Also see:
• Chapter 5.4
☞
Text Field Printing
Also see:
• Chapter 10.2