ESim v5.12 for EasyCoder PD4—Programmer’s Reference Manual 39
Chapter 7—Commands
↵
FK"TEST3"↵
FS"TEST3"↵
C0,6,L,+3,"Counter 0"↵
B120,50,0,2,3,6,100,B,C0↵
B320,50,0,2,3,6,100,B,C0+1↵
B520,50,0,2,3,6,100,B,C0+2↵
FE↵
Time:
TT Prints the current time at this position in the pre-
defined format. See the TT command for format
selection. is command is only available if a Real
Time Clock is installed.
TT+nnn Prints “sell by” time. Adds nnn number of minutes
(must be three digits) to the current time and places it
on the form using time layout defined.
TD Prints the current date at this position in the pre-
defined format. See the TD command for format
selection. is command is only available if a Real
Time Clock is installed.
TD+nn Prints “sell by” date. Adds nn number of days (must
be two digits) to the current date and places it on the
form using date layout defined.
is example illustrates how fixed text, variable text, counters,
time and date can be used in text fields in the Form Edit Mode:
↵
FK"TEST4"↵
FS"TEST4"↵
V00,25,l,"Product name"↵
C0,4,L,+1,"Start serial No"↵
B50,50,0,3,2,6,100,B,"TEXT"↵
B50,200,0,3,2,6,100,B,V00↵
B50,350,0,3,2,6,100,B,C0↵
B50,500,0,3,2,6,100,B,TT↵
B50,650,0,3,2,6,100,B,TD↵
FE↵