Intermec EasyCoder C4 – Programmer’s Guide Ed. 3 26
Chapter 7 Commands
Remarks, cont.
Example:
When labels with consecutive numbers are printed next to each other across the
media, it is done by using a single counter in a single form.
The command Cn±x in our example will be used twice and count up the single
counter by one (1) in each position (last two A-command lines).
Set the Form Step Value p
4
to +3 for the counter Cn used in our example (see the
C-command line). Also refer to “C – Counter”.
↵
FK"TEST2" ↵
FS"TEST2" ↵
C0,5,L,+3,"Counter 0" ↵
A180,50,0,3,1,1,N,C0 ↵
A380,50,0,3,1,1,N,C0+1 ↵
A580,50,0,3,1,1,N,C0+2 ↵
FE ↵
This example illustrates how fi xed text, variable text and counters can be used in
text fi elds in the Form Edit Mode:
↵
FK"TEST1" ↵
FS"TEST1" ↵
V00,25,l,"Product name" ↵
C0,4,L,+1,"Start serial No"
A50,50,0,4,1,1,N,"COMPANY NAME" ↵
A50,100,0,3,1,1,N,"Product: "V00 ↵
A50,150,0,3,1,1,N,"Serial No: "C0 ↵
FE ↵
Combination of several options can also be used in a single text fi eld:
A50,300,0,3,2,2,R,"Deluxe"V01C1"Combo"↵
:Writes the text “Deluxe” + the contents of variable 01 + the contents of counter 2
+ the text “Combo” + the contents of variable 01.
A – Print Text, cont.
00001 00002 00003