home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / applications / databases / db2.5.lha / db2.5 / Examples / ARexxDemos / calc.db next >
Encoding:
Text File  |  1994-09-03  |  187 b   |  8 lines

  1. /* calc expression in given gadget
  2.    Written by: Richard Ludwig */
  3. options results;GETFIELD
  4. if verify(result, '0123456789+-*/().','m') then do
  5.     interpret 'ret=' result
  6.     PUTFIELD ret
  7. end
  8.