home *** CD-ROM | disk | FTP | other *** search
- /* Tests the REXX() function from Professional Calc */
-
-
- ADDRESS "PCALCFUN"
- options results
-
-
- say "In the rexx function."
-
- 'GetManyParam'
- say result
-
- end = 0;
- end = result
- say end
-
- do i=0 for end
- 'GetParam' i
-
- say 'Parameter Number ' i ' Gives ' result
- end
-
- 'GetCell' 'A1'
- say 'Cell A1 = ' result
-
- 'GetCell' 'B1'
- say 'Cell B1 = ' result
-
- 'CalcResult' 'Test String'
-
- say "Done."
-