home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1998 #3
/
amigamamagazinepolishissue1998.iso
/
bazy
/
ab
/
arexx
/
simple_list.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1992-09-03
|
561b
|
32 lines
/* Program to list the names of everyone on the current project. */
/* Make sure AB is running. */
if ~show(PORTS, 'AB_AREXX') then do
say 'AB is not currently running! Please start it and try again.'
exit
end
address 'AB_AREXX'
options results
END = 0
/* Go to the first entry. */
'FIRST_ENTRY'
/* Continue until we have reached the end of the project. */
do while END = 0
/* Print the name of this entry. */
'GET_ENTRY_DETAILS 1'
say 'Name: 'RESULT
/* Go to the next entry. */
'NEXT_ENTRY'
END = RC
end
exit