home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d7xx
/
d748
/
delitracker.lha
/
DeliTracker
/
Rexx
/
dt_mainwin.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1992-10-12
|
291b
|
26 lines
/* DeliTracker - open/close MainWindow */
address 'rexx_DT'
options results
status G mwi
if result == "no" then do
openmainwin
end
else do
closemainwin
end
status G mwi
if result == "no" then do
say "Main Window is now closed..."
end
else do
say "Main Window is now open..."
end