Product specifications

SLCS Programming Manual
Rev. 1.24
- 53 -
2-4-4 ? (Get Variables)
Description
Use this command to get the content of variables or counters
Syntax
?
Content of variable
Data must be entered in ascending order
Example
TS’Template1’ // Template Store Start
SV00,20,N’Enter Company Name : ’ // Declare(Set) variable V00
SV01,15,N’Enter Product Code :’ // Declare(Set) variable V01
T50,30,3,1,1,0,0,N,N,V00 // Use T command to print V00
T50,150,3,1,1,0,0,N,N,’Code : ’V01 // Use T command to print V01
TE // Template Store End
TR’Template1’ // Recall Template1
? // Start to get data for variables
SEM // data for V00
770 // data for V01
P1 // Start Printing when the P command comes
Result
SEM
Code : 770