Dominic Zukiewicz said, 

> /* Program to delay mail checking */
> ADDRESS MD.1
> mins=25
> do until ~show(p,'MD.1')
>   GetMailNews 'Mail'
>   call delay(50*60*mins)
> end

> Apparently there's an error in line 6 - Function not found. What's
> happened??

delay() is in rexxsupport.library. You need to ensure the library is
loaded before calling any of its functions.

if ~show('L','rexxsupport.library') then do
        if ~addlib('rexxsupport.library',0,-30,0) then do
                say 'Cannot open rexxsupport.library')
                exit
                end
        end


Neil
-- 
Neil Bothwick - http://www.wirenet.co.uk   icq://16361788
Connected via Wirenet,The UK's first Amiga-only internet access provider
--
Mouse: (n.) an input device used by management to force computer users to
           keep at least a part of their desks clean.

Reply via email to