Re: Can this be done faster ?

2006-07-21 Thread Geoff Canyon
On Jul 20, 2006, at 7:27 PM, John Miller wrote: put 50 into XX put the ticks into timer repeat until listXX is empty put line 1 to XX of listXX into listYY delete line 1 to XX of listXX repeat with x = 1 to (number of lines in listYY) doaction to line x of listYY end repeat end

Re: Can this be done faster ?

2006-07-21 Thread Jim Ault
I would use the following type of loop put the ticks into timer set the itemdel to tab --or what applies filter databaseList without empty repeat for each line txtLine in databaseList put doaction(txtLine) cr after newListing end repeat filter newListing without empty put the ticks -

Can this be done faster ?

2006-07-21 Thread John Miller
Greetings All, To clarify how I do this ... I have a stack that has 2 fields. The first fields contains 30,000 lines. My goal (for the sake of doing something) is to put item 1 of each line into item 2 of each line. When the script is finished, the results should be put into field 2.

Re: Can this be done faster ?

2006-07-21 Thread Mark Smith
on mouseUp put empty into cd fld 2 wait 5 ticks put 0 into XX put cd fld 1 into listXX put the ticks into timer repeat for each line L in listXX put L into tLine put item 1 of tLine into item 2 of tLine put tLine cr after tList end repeat delete char -1 of tList

Can this be done faster ?

2006-07-21 Thread John Miller
Mark, Using your script, processing all 30,000 lines in my field only took . 167 seconds. Impressive!!! Thanks, John ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Can this be done faster ?

2006-07-21 Thread Richard Gaskin
John Miller wrote: Using your script, processing all 30,000 lines in my field only took . 167 seconds. Impressive!!! I don't know what the task was that the script was performing since it was omitted from the reply, but offhand 167 secs sounds like a long time to process only 30k lines of

Re: Can this be done faster ?

2006-07-21 Thread Jim Ault
word wrap... squint the real number was 0.167 seconds /squint Jim Ault Las Vegas On 7/21/06 3:13 PM, Richard Gaskin [EMAIL PROTECTED] wrote: John Miller wrote: Using your script, processing all 30,000 lines in my field only took . 167 seconds. Impressive!!! I don't know what the task

Can this be done faster ?

2006-07-20 Thread John Miller
JB, I once wrote an inventory control program for a company using Revolution. They had many thousands of items that I read out of their database and then sorted and processed. I found that using a repeat for that many items was extremely slow. The solution that I found which made

Can this be done faster ?

2006-07-12 Thread jbv
Hi again, I have some data that I need to process repeatedly and as fast as possible. first I have a variable V with numeric values 0 (1 per line) and some of them can repeat themselves in the list. then, I need to build and array T in which keys are those numeric values, and the data

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Mark Smith
You don't actually have to do the first round, setting all the elements of T to 0. Adding 1 to an empty value seems to work fine, in my experience. best, Mark On 12 Jul 2006, at 12:40, jbv wrote: Hi again, I have some data that I need to process repeatedly and as fast as possible.

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Klaus Major
Hi Dave, interesting solution, but even too fast to be read :-) Regards Klaus Major [EMAIL PROTECTED] http://www.major-k.de ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread jbv
Mark, yes indeed. Thanks. You don't actually have to do the first round, setting all the elements of T to 0. Adding 1 to an empty value seems to work fine, in my experience. ___ use-revolution mailing list use-revolution@lists.runrev.com Please

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Dave LeYanna
___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Can this be done faster ?

2006-07-12 Thread Jim Carwardine
Multiple email crisis... Can anyone turn him off? on 7/12/06 9:20 AM, Dave LeYanna wrote: ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: