home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Archives
/
ARexxTools
/
RexxIntuition.lha
/
RexxIntuition
/
RexxIntui.lzh
/
scripts
/
Msg.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1990-06-27
|
347 b
|
13 lines
/* An example of using the dissidents rx_intui.library */
wind=GetWindow('Show Req',,,,,,,,)
IF wind == '' | wind == 0 THEN SAY 'Window open error'
/* Present an Automessage to the user. This one only has an OK (returns 1) */
ans=MsgOne(wind,'This is an automessage')
/* Print out the returned answer to the CLI */
SAY ans
err=EndWindow(wind)