Returns an object's ERROR status.
|
Argument
|
Character (C) or Numeric
(N)
|
Description
|
|---|---|---|
|
error-status
|
N
|
returns a value indicating whether an automation error has been encountered for
the object.
|
|
error-msg
|
C
|
returns the automation
error message.
|
length errmsg $ 200;
call send(objid,'_GET_PROPERTY_',
'ActiveObject', actobj);
call send(objid,'_IN_ERROR_',inerror, errmsg);
if inerror then
link handle_err;