Re: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-27 Thread Louis Windsor
ARRAY : NEXT I : : Is equivalent to: : : FOR I = 1 TO 1 : X = REMOVE(ARRAY) : NEXT I : : -[d]- : : -Original Message- : From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] : Sent: Wednesday, October 27, 2004 9:10 AM : To: [EMAIL PROTECTED] : Subject: RE: [U2] [UD] Exit BASIC program with SELECT

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-27 Thread Adrian Matthews
e- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Horn, John Sent: 27 October 2004 14:17 To: [EMAIL PROTECTED] Subject: RE: [U2] [UD] Exit BASIC program with SELECT list? > Behalf Of Allen E. Elwood > > Ohh.lemme see, could it be that I've never heard of REMOVE?

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-27 Thread Dean Fox
1 X = REMOVE(ARRAY) NEXT I -[d]- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 9:10 AM To: [EMAIL PROTECTED] Subject: RE: [U2] [UD] Exit BASIC program with SELECT list? On 26 Oct 2004 13:26:22 -0700, Allen Egerton wrote: >

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-27 Thread George Gallen
to:[EMAIL PROTECTED] >Sent: Wednesday, October 27, 2004 9:10 AM >To: [EMAIL PROTECTED] >Subject: RE: [U2] [UD] Exit BASIC program with SELECT list? > > >On 26 Oct 2004 13:26:22 -0700, Allen Egerton wrote: >> Why wouldn't you use the REMOVE statement? > >On 26 Oct 200

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-27 Thread Horn, John
> Behalf Of Allen E. Elwood > > Ohh.lemme see, could it be that I've never heard of REMOVE? :-D > > Oh boy a new toy to play with. I'll give it a whirl in my > speedtest program and see which is more efficient!!! Be prepared to be impressed! It's amazing how much faster REMOVE can be in c

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-27 Thread TPellitieri
On 26 Oct 2004 13:26:22 -0700, Allen Egerton wrote: > Why wouldn't you use the REMOVE statement? On 26 Oct 2004 16:33:55 -0700, Allen E. Elwood wrote: > Ohh.lemme see, could it be that I've never heard of REMOVE? A caution with REMOVE - It removes up to the next DELIMITER, so if you have valu

Re: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-26 Thread Allen Egerton
On Tue, 26 Oct 2004 16:33:55 -0700, you wrote: >Ohh.lemme see, could it be that I've never heard of REMOVE? :-D > >Oh boy a new toy to play with. I'll give it a whirl in my speedtest program >and see which is more efficient!!! > >News at 11 ! Remove is nice when you're processing a dynamic

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-26 Thread Allen E. Elwood
en Egerton Sent: Tuesday, October 26, 2004 14:27 To: [EMAIL PROTECTED] Subject: Re: [U2] [UD] Exit BASIC program with SELECT list? On Tue, 26 Oct 2004 13:26:22 -0700, you wrote: >Working the other way, this is a fast way to process a large number of >attributes: > >ACOUNT = DCOUN

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-26 Thread Wendy Smoak
Allen Egerton wrote: > Why wouldn't you use the REMOVE statement? Please consider adding your favorite loop to the Wiki: http://www.pickwiki.com/cgi-bin/wiki.pl?LoopDebates -- Wendy Smoak --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-26 Thread Allen Egerton
On Tue, 26 Oct 2004 13:26:22 -0700, you wrote: >Working the other way, this is a fast way to process a large number of >attributes: > >ACOUNT = DCOUNT(A,@AM) >FOR K = 1 TO ACOUNT > ONE.LINE = A<1> > DEL A<1> > [[DO STUFF WITH ONE.LINE]] >NEXT K > >Because it just scoops attr 1 off the top, and

RE: [U2] [UD] Exit BASIC program with SELECT list?

2004-10-26 Thread Allen E. Elwood
s. aee -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Tuesday, October 26, 2004 06:18 To: [EMAIL PROTECTED] Subject: [U2] [UD] Exit BASIC program with SELECT list? Hi Allen, You missed the subtle [UV] in the subject line. :-) Speak

[U2] [UD] Exit BASIC program with SELECT list?

2004-10-26 Thread BNeylon
Hi Allen, You missed the subtle [UV] in the subject line. :-) Speaking of UniData, I found if you wish to create a large list within a program, the cheapest way is: EXECUTE 'DELETE-LIST AEE' OPENSEQ 'SAVEDLISTS','AEE000' TO SEQFILE ELSE NULL Then you do your WRITESEQ AN.IN ON SEQFILE The syst