Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- GetIt Reference Guide - syntax: n_onexpr(<secondsn>,<procedurec>,<logical-expressionc>) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Syntax: N_ONEXPR(<secondsN>,<procedureC>,<logical-expressionC>)

Calls a procedure when logical-expression becomes true.

Example

* call procedure TIMEOUT when clock reaches 1:00 pm

N_ONEXPR(10,"timeout",[TIME() > "13:00:00"])

Notes

The expression must be passed as a character string since it will be
evaluated as a macro.

The expression will be evaluated every <seconds> seconds.  In the example
above, it will be evaluated once every ten seconds.  <seconds> can be
from 0.1 to 65535 seconds (about 18 hours).  However, timing is not precise,
and you cannot use it to accurately clock real-time events.  Also, the
more frequently an expression is evaluated, the more it will interfere with
the normal program execution.

The expression must be valid at the time it is evaluated or a Clipper
error will occur.

N_ONEXPR is active at all times until deactivated by N_ONEXPR("") with a
null string.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson