Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Downloading patents?

From: sanghabum:aol at: 4-Sep-2001 6:47

[bpaddock--csonline--net] writes:
> How do I get the 'cancel' button to work in the GetPatent function? Is > there a Event tutorial some place, or some simpler way? >
Hi there, to give other buttons (like your cancel button) a look in, you need to put a Wait into the main loop, eg: repeat CurrentPageNumber LastPage [ wait 0 if stop [break] .... Wait 0 should work, if not try a very short time like wait 0.01. It's a trick I learnt from the masters on this list. --Colin