69
DEVICE_ID$
Purpose To get the serial number of the mobile computer.
Syntax A$ = DEVICE_ID$
Remarks This command is to be replaced by SYSTEM_INFORMATION$.
“A$”
is a string variable to be assigned to the result. That is, a string for the
serial number will be returned.
Such information can be checked in System Menu | Information | S/N.
Example
GET_TARGET_MACHINE$
Purpose To get the model number of the target mobile computer.
Syntax A$ = GET_TARGET_MACHINE$
Remarks “A$” is a string variab
le to be assigned to the result. That is, a string for the
model number will be returned.
Example
A$ = GET_TARGET_MACHINE
IF (A$ = “8500”) THEN
…
ELSE IF (A$ = “8000”) THEN
…
ELSE IF (A$ = “8300”) THEN
…