Search the web
Sign In
New User? Sign Up
Rebol_New · For beginning Rebol programmers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 219 - 248 of 314   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
219
While I continue to pursue Rebol with interest .... I'm still nursing the 'Official Guide to Rebol' and have lots more to learn. As I contemplate using Rebol...
johnfdutcher
Offline Send Email
Apr 25, 2002
6:28 pm
220
It's really easy to read the data as a string: Flat_File: read %MyFlatFileData.dat To be a bit more smarter, requires looking at the individual columns and ...
Andrew Martin
taorebol
Offline Send Email
Apr 25, 2002
6:34 pm
221
Hi readers, I am just wondering if anyone else who uses the subject book as much as I do has come accross this problem, or is it just a problem I have created...
johnfdutcher
Offline Send Email
May 13, 2002
1:18 pm
222
Hi John, I've the book and the scripts to it. Is it a modified or unmodified script you're running? If the first, what's the name of the script and I'll have...
Carl Read
lunaread
Offline Send Email
May 14, 2002
6:49 am
223
Hi Carl..et.al., Not surprisingly I jumped too quickly....I have modified in a generic way all the '.r' files comprising the database system to accomodate a...
johnfdutcher
Offline Send Email
May 14, 2002
5:54 pm
224
Hello Reboler's, The pasted text below is the output from an execution of Rebol/Core and a modest script of mine. The script is copied from, Rebol, The ...
johnfdutcher
Offline Send Email
May 20, 2002
7:10 pm
225
... I can't really work out what's happening with your program John. Have you tried adding probes in the code before the error occurs? ie... probe...
Carl Read
lunaread
Offline Send Email
May 21, 2002
7:45 am
226
Can you supply the script you wrote? Andrew Martin ICQ: 26227169 http://valley.150m.com/ -><-...
Andrew Martin
taorebol
Offline Send Email
May 21, 2002
7:49 am
227
... Here is the function from the failing script ... taken from 'Rebol, The Official Guide', but modified in terms of the record/field names for my app.: ...
Andrew Martin
taorebol
Offline Send Email
May 22, 2002
3:59 am
228
The posted issue seemed to revolve around the fact that there was a colon stored next to the label (id) in the database record. How, or why, I don't know...I...
johnfdutcher
Offline Send Email
May 24, 2002
5:57 pm
229
... Hi John, A word with a colon is a set-word datatype in REBOL, so if the program was expecting 'id to be an integer it would've tripped up on it. ie... ... ...
Carl Read
lunaread
Offline Send Email
May 24, 2002
10:08 pm
230
The 'key-event:'function below nicely allows me to 'filter' the keystrokes into my GUI. So far, no code experiment at the line whose content (near the end) is:...
johnfdutcher
Offline Send Email
Aug 20, 2002
5:53 pm
231
... Hi John, Part of your problem is the face in your function is the window-level face, not the field face. Place this line before the above... print...
Carl Read
lunaread
Offline Send Email
Aug 21, 2002
11:13 am
232
Carl, You instigated a major step forward...as the suggested line does indeed put up the dialog when a 3rd keystroke is made. Can you comment on this...
johnfdutcher
Offline Send Email
Aug 21, 2002
12:22 pm
233
... Groan - yes, you're right. I hadn't tested the other fields. Anyway, have a look at the attached script. (Line-wraps can muck up scripts in the body of...
Carl Read
lunaread
Offline Send Email
Aug 21, 2002
11:32 pm
234
What a really effective piece of work ... and just what I'm looking to find ! Thanks much Carl. I keep hoping Rebol will 'make it'....but suppose time will...
johnfdutcher
Offline Send Email
Aug 22, 2002
12:35 pm
235
Hi! Thought I'd try here as I've searched elsewhere with no success. This really is a simple question despite the subject length ;-) I'm playing with View...
mrzoon
Offline Send Email
Aug 23, 2002
2:04 pm
236
... ** Script Error: files has no value ** Near: files/rebol/rzine-1-02.html ... == %/c/program%20files/rebol/rzine-1-02.html Does that help? :) Andrew Martin ...
Andrew Martin
taorebol
Offline Send Email
Aug 23, 2002
7:14 pm
237
... Thanks, Andrew - Actually, no. I've tried this and a number of other methods for getting past the space. I'm using Netscape 7.0PR1 -- possibly there's a...
mrzoon
Offline Send Email
Sep 6, 2002
12:41 pm
238
... Thanks, Andrew - Actually, no. I've tried this and a number of other methods for getting past the space. I'm using Netscape 7.0PR1 -- possibly there's a...
mrzoon
Offline Send Email
Sep 6, 2002
12:41 pm
239
The last message I have is from September, 2002. Anyway, a question: I need a simple registration/login script for web use. "Register" should take an email and...
mrzoon
Offline Send Email
Apr 26, 2003
3:16 pm
240
... Well I'm still here, anyway. Welcome to the list, Pete! To your question: There's a request-pass function in View which almost does what you want (I...
Carl Read
lunaread
Offline Send Email
Apr 27, 2003
2:53 am
241
Anybody know how to prevent the View application from 'self-quitting' when the 'x' is clicked at the upper right to close the console display of printed info ?...
johnfdutcher
Offline Send Email
Jul 11, 2003
1:47 am
242
... Hmmm - no. Printing from a running script doesn't open a window in AmigaOS, and I think it's the same in Linux (from memory), so printing may only cause a...
Carl Read
lunaread
Offline Send Email
Jul 11, 2003
12:58 pm
243
A Rebol 'word' (ticket-value) is given a value via the (2) steps below: 1) nbr1: rejoin [rotary1 rotary2] nbr2: rejoin [rotary3 rotary4] nbr3: rejoin [rotary5...
johnfdutcher
Offline Send Email
Jul 11, 2003
3:00 pm
244
Carl, You're a great resource for sure .... The following seems to allow me to make dynamic 'append output/text' statements and build the desired display when...
johnfdutcher
Offline Send Email
Jul 11, 2003
7:18 pm
245
... By the sound of it, the function you're passing ticket-value to is converting the "00" strings to either "0"s or 0 numbers (not strings). To check this,...
Carl Read
lunaread
Offline Send Email
Jul 11, 2003
10:57 pm
246
... You were close... clear output/text show output would do the trick. 'output, (which is just a word - we could've used any word), is a reference to the...
Carl Read
lunaread
Offline Send Email
Jul 11, 2003
10:57 pm
247
I attached a slider to an area ....it scrolls the text nicely. When closing the window with the area in it I set the slider/data to zero so it will be at the...
johnfdutcher
Offline Send Email
Jul 18, 2003
3:29 pm
248
The 'save' command works great, to save a face to a file, but in the case of an 'area' anyway, I see it adds enclosing braces at thebeginning and...
johnfdutcher
Offline Send Email
Jul 18, 2003
5:55 pm
Messages 219 - 248 of 314   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help