home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
dirs
/
rexxintuition_393.lzh
/
RexxIntuition
/
Scripts
/
Msg.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1990-10-28
|
347b
|
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)