Re: [U2] Strange happening...

2009-03-02 Thread David Beaty
I tend to use: SELECT FILENAME EOF = @FALSE LOOP READNEXT ID ELSE EOF = @TRUE UNTIL EOF DO CODE CODE CODE with GOSUB CODE CODE REPEAT The advantage here is that it allows you to bail out of the loop of you want to by setting EOF David -- From:

Re: [U2] Speeding up processing through large dynamic table

2008-11-17 Thread David Beaty
If the array IN.TAB is only attributed, with say the customer number description with pipe delimited you can use REMOVE: LOOP REMOVE IN.LINE FROM IN.TAB SETTING MORE UNTIL IN.LINE = DO CUST.NUM = FIELD(IN.LINE,|,1) CUST.DESC = FIELD(IN.LINE,|,2) REPEAT

Re: [U2] File pointer question

2008-06-12 Thread David Beaty
Is it possible some other program has the file open in the other directory and its sharing the file handle? Either a COMMON issue or the rotating file pool? David -- From: T Stokes [EMAIL PROTECTED] Sent: Wednesday, June 11, 2008 11:21 PM To:

Re: [U2] version control

2008-04-16 Thread David Beaty
We use Subversion with a Universe based system. The one piece of advice I would give is to split up the program files or xxPROCESS into logical SVN projects as we found that with a PROGS file of 2500+ programs it would take quite some time to update/commit etc. In the end we also wrote our