home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_Evaluate.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** Cut, Evaluate and Type the result of the current block
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* cut the current block into the result buffer */
- cut resultbuff
- if rc==0 then do
-
- /* prepare and then interpret the value */
- value="value=" result
- interpret value
-
- /* if there were no errors then type the result */
- if rc==0 then do
- text """"value""""
- end
- end
-