'AC' |
Auto-Convert Values to STR( ) or NUM( ) |
When the 'AC' parameter is enabled, if the system detects a numeric value when it is expecting a string value (or vice-versa), it will automatically convert this value to a STR( ) or NUM( ) function.
(The 'AC' system parameter was added in PxPlus 2017.)
Off
STR( ) Convert Numeric to String
NUM( ) Convert String to Value
Command Line Compiler/Lister
10 msgbox "Client owes "+cst_owes+" and is past due by "+cst_late+" days"
list 10
0010 msgbox "Client owes "+str(cst_owes)+" and is past due by "+str(cst_late)+" days"