[REBOL] Re: Text-list updates

2004-05-31 Thread Anton Rolls
I think it was Allen Kamp who showed the first auto-fill style. I used it a long time ago. Anton. > I'll second that! I've always liked the following "auto-fill" field style > (which I've lost track of who originally wrote, so yell if it's yours). > Ashley -- To unsubscribe from this li

[REBOL] Re: Text-list updates

2004-05-31 Thread Ashley Trüter
> I'd love to see the text list respond to keys typed in so that the list > moves to > the closest alphabetic word. (Fairly standard long listing behaviour in > windows etc.) I'll second that! I've always liked the following "auto-fill" field style (which I've lost track of who originally wrote,

[REBOL] Re: Text-list updates

2004-05-31 Thread Mike Yaunish
I'd love to see the text list respond to keys typed in so that the list moves to the closest alphabetic word. (Fairly standard long listing behaviour in windows etc.) Mike Yaunish >Here is an example: > >http://www.tretsoft.com/images/text-list-new.jpg > >Paul Tretter > >- Original Messa

[REBOL] file splitting howto?

2004-05-31 Thread Tom Foster
Hi guys, I would like to split a large (40m) file into 1m chunks, being sure to split on line breaks. Each chunk will be written to a seperate file. The linux utility "split" does almost what I want, execept for where it breaks the file. does my solution involve open/direct/lines, and copy/

[REBOL] [View] list examples

2004-05-31 Thread Graham Chiu
The VID list is a rather undocumented beast. So, I have assembled a little documentation from the beta view docs in 2000, and a few examples to illustrate the basic concepts. http://www.compkarori.com/vanilla/display/list+examples Feel free to add more complex examples if they help one to und

[REBOL] Re: Retrieving machine information

2004-05-31 Thread Gregg Irwin
Hi Henrik, HMK> Is there any way to retrieve machine information such as CPU type, HMK> speed, memory, etc. within REBOL? Under Windows you would use the GetSystemInfo API. Below is a quick mapping of it; I can flesh out the details to make it more useful if you need, just let me know (just shor

[REBOL] Re: Retrieving machine information

2004-05-31 Thread Ashley Trüter
> Is there any way to retrieve machine information such as CPU type, > speed, memory, etc. within REBOL? Not without using an OS specific API call. Note that some of the info you require might be available as environment variables, eg. (on WinXP): >> get-env "PROCESSOR_ARCHITECTURE" == "x86" >>

[REBOL] Retrieving machine information

2004-05-31 Thread Henrik Mikael Kristensen
Hi Is there any way to retrieve machine information such as CPU type, speed, memory, etc. within REBOL? Would be nice for benchmarking programs. -- Regards, Henrik Mikael Kristensen -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: any chance of a core/pro?

2004-05-31 Thread Tom Foster
Gregg Irwin wrote: > > If you want all the commercial features in a free version, I guess my > answer to "why not?" would be, "How will RT stay in business if they > give everything away for free?" > RT would probably flourish in a big way, and rebol's user base would double or triple almost o

[REBOL] Re: Text-list updates

2004-05-31 Thread Paul Tretter
Here is an example: http://www.tretsoft.com/images/text-list-new.jpg Paul Tretter - Original Message - From: "Paul Tretter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 31, 2004 3:52 PM Subject: [REBOL] Text-list updates > I have been working on updates to Text-List.

[REBOL] Re: How to reset VID/guide?

2004-05-31 Thread Robert M. Münch
On Mon, 31 May 2004 19:53:38 +1200, Carl Read <[EMAIL PROTECTED]> wrote: > I never actually use guide, but this seems to give you what you want... > ... Hi, thanks a lot that's it. Very simple if you see it ;-). Robert -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED]

[REBOL] How to reset VID/guide?

2004-05-31 Thread Carl Read
>Hi, I have the following layout: > >view layout [ > across > a: txt "test1" > guide b: txt "test2" return > c: txt "test3" return > d: txt "test4" >] > >And I want to be 'd in line with 'a. How do I get rid of the 'guide once >set? I just want to disable it until t