home *** CD-ROM | disk | FTP | other *** search
- /*
- * NewSheet.rexx
- * Example-ARexx-Script of TurboCalc2.0 © 1993 by M.Friedrich
- *
- * This examples opens a new sheet, writes some texts into the sheet
- * and closes (after displaying a message) this sheet then.
- */
-
- Options FailAt 0
- Options Results
-
- ADDRESS TCALC
-
- 'NEWSHEET "This is an example"'
-
- SELECTCELL B3
- 'PUT "This is a test"'
-
-
- MELDUNG '"Opened new sheet via Arexx, confirm to close!"'
- 'PUT "Good Bye"'
-
- CLOSESHEET 0
-