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...
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 ...
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...
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...
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...
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 ...
... 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.: ...
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...
... 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... ... ...
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:...
... 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, 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...
... 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...
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...
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...
... ** 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 ...
... 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...
... 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...
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...
... 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...
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 ?...
... 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...
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...
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...
... 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,...
... 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...
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...