[REBOL] [REBOL] What's next for REBOL... Re:(5)

2000-01-07 Thread Micael . Gullmes
I would like to be a beta tester too! Brgds /Micael -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 7 januari 2000 07:22 Till: [EMAIL PROTECTED] Amne: [REBOL] What's next for REBOL... Re:(4) Yes! As long as they have the same subject, I'll find

[REBOL] [REBOL] none Re:

1999-11-12 Thread Micael . Gullmes
Hi Donal, you can do it by using error? and try either error? try [ read http://www.theskillstore.com ][ send [EMAIL PROTECTED] "http://www.theskillstore.com is down" ][ send [EMAIL PROTECTED] "http://www.theskillstore.com is up" ] Brgds /Micael -Ursprungligt meddelande- Fra

[REBOL] [REBOL] clear function Re:

1999-11-12 Thread Micael . Gullmes
Hi, regarding the memory, have you tried the command 'recylce'? recycle Brgds /Micael -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 12 november 1999 10:09 Till: [EMAIL PROTECTED] Amne: [REBOL] clear function Hi, I'm new here, although I hav

[REBOL] SV: [REBOL] Reading a database URL

1999-10-31 Thread Micael . Gullmes
Hi Chuck, try: print read to-url "http://www.32bitsonline.com/article.php3?query=%28category%20like%20%22feat ure%20articles%25%25%22%29%20%7c%7c%20%28category%20like%20%22regular%20colu mns%25%25%22%29&begin=1&end=15" Brgds /Micael -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [m

[REBOL] [REBOL] Saving to a different directory Re (2):

1999-10-20 Thread Micael . Gullmes
Hi Chuck, ** Access Error: Cannot open /D/nnet/html/file.html. Some ideas, I've received this error when: 1. The specified directory does not exist 2. The file already exist but is write protected 3. I did not have permission to write in that directory Does the directory and file exist? exist?

[REBOL] SV: [REBOL] Saving to a different directory

1999-10-20 Thread Micael . Gullmes
Hey Chuck, Try write %/D/nnet/html/file.html read http://www.dot.com/index.html or write to-file %"/D/nnet/html/file.html" read http://www.dot.com/index.html Brgds /Micael -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 20 oktober 1999 22:46 Ti

[REBOL] SV: [REBOL] Error handling

1999-10-15 Thread Micael . Gullmes
Peter, Try the following: if error? try [page: read http://www.nonexisting-url.com] [ print "Sorry, cannot find page" ] Brgds /Micael -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 15 oktober 1999 08:57 Till: [EMAIL PROTECTED] Ämne: [REBOL

[REBOL] SV: [REBOL] Is there a way of changing the 'state' of a port from /lines Re:

1999-10-14 Thread Micael . Gullmes
Thanks Jim! That was exactly what I was looking for! Brgds /Micael -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 13 oktober 1999 22:09 Till: [EMAIL PROTECTED] Ämne: [REBOL] Is there a way of changing the 'state' of a port from /lines Re: Hi

[REBOL] Is there a way of changing the 'state' of a port from /lines

1999-10-13 Thread Micael . Gullmes
Does anyone know if it is possible to change the behaviour of a port after it has been opened? I need to send data to a port without CRLF being appended automatically, but I want to receive data row by row using the /lines refinement. The following example shows the problem: >> port: open/dire