[REBOL] Re: Stopping errors from stopping the program.

2002-03-16 Thread Carl Read
On 17-Mar-02, Dr. Louis A. Turk wrote: > Carl, > Sorry to take so long to respond. I had to stop and take care of > some other pressing responsibilities. Anyway, many thanks. You > solved my problem and also showed me how to test without having to > access the internet. As is usually the case wi

[REBOL] Re: Stopping errors from stopping the program.

2002-03-16 Thread Dr. Louis A. Turk
Carl, Sorry to take so long to respond. I had to stop and take care of some other pressing responsibilities. Anyway, many thanks. You solved my problem and also showed me how to test without having to access the internet. As is usually the case with rebol, the solution turned to be so sim

[REBOL] Re: Stopping errors from stopping the program.

2002-03-13 Thread Micael . Gullmes
Hi! the until command will : "Evaluates a block until it is TRUE." the "prin {ftp failed: trying again ... }" returns true, so the until will stop evaluating your code. I believe the following (non tested) code will work. until [ if error? try [write web-address read page-url] [ pr

[REBOL] Re: Stopping errors from stopping the program.

2002-03-13 Thread Carl Read
On 13-Mar-02, Dr. Louis A. Turk wrote: > Hi rebols, > How do I stop an error from stopping my program? I am sending a file > to a remote server every 10 minutes to update data. When there is > too much traffic on the net or the remote server is too slow > receiving the file, an error occurs whic