<< Prev        

Commands Whose Specification Has Been Changed From RC7M

Name of RC7M command Implementation in RC8 RC8 command Remark
END Function changed. Exit Replace with Exit Sub.
PRINTMSG Function changed. PrintMsg Dialog function were added as of Ver1.6.*.
Dialog can display message strings.
Icon and caption settings are available from version 1.7.* and higher.
Reference PrintMsg
True Function changed. Constant "1" changed into "-1."
DEFIO Function changed. DefIO In RC8, the available numerical range of WORD is 0 through 65535, which was -32768 through 32767 in RC7.
If you would like to use -32768 through 32767 for numerical range, use Short.
RESETAREA Function changed. ResetArea In RC7M, ON state of IO signal in the detection area is turned OFF, whereas that of RC8 will remain ON.

P-, J-, T- or V-type variable setting with immediate value

Ex.: When V-type variable (0, 0, 1) is used

Function changed.

P-, J-, T- or V-type variable setting with immediate value

Ex.: When V-type variable (0, 0, 1) is used

If the type is not explicitly specified, it is treated as Variant type. Note that an execution error or compile error might occur if the type is not specified explicitly.

Example :
(False) letp p0 = pvec (p1) + (0, 0, 1) 'Execution error
(True) letp p0 = pvec (p1) + V (0, 0, 1)

<< Prev