home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
biz
/
turbocalc-2.18e.lha
/
TurboCalc
/
Arexx
/
NewSheet.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-07-25
|
412b
|
24 lines
/*
* NewSheet.rexx
* Example-ARexx-Script of TurboCalc2.0 © 1993 by M.Friedrich
*
* This examples opens a new sheet, puts out some text
* and closes this sheet (after displaying a message).
*/
Options FailAt 0
Options Results
ADDRESS TCALC
'NEWSHEET "This is an example"'
SELECTCELL B3
'PUT "This is a test"'
MESSAGE '"Opened new sheet via Arexx, confirm to close!"'
'PUT "Good Bye"'
CLOSESHEET 0