Re: Input weirdo...

2004-04-30 Thread Ron White
#x27;" <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 7:10 AM Subject: RE: Input weirdo... > Thanks Mark! > > Bjorn managed to find his reply (in an Advanced Pick manual) > just after > I'd sent the request, which kinda worked, but not exactly, > but your >

Re: Input weirdo...

2004-04-30 Thread Allen Egerton
From: "Stu Glancy" <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 9:24 AM > Here's another solution: > > LOOP > INPUT VAR,-1 > IF VAR THEN > INPUT TOUCH,1 > IF TOUCH = 'X' THEN EXIT > END >REPEAT That will bring most mac

RE: Input weirdo...

2004-04-29 Thread Bruce Nichol
Goo'day, At 22:10 29/04/04, you wrote: Speaking of these SYSTEM thangs - is there anywhere I can get a list of all the settings / variables included in SYSTEM(x)? IIRC, somebody did just that some months/years ago For UV at least Check the archives HTH -- u2-users mailing list [EMAI

Re: Input weirdo...

2004-04-29 Thread Stu Glancy
s Discussion List" <[EMAIL PROTECTED]> Sent: Wednesday, April 28, 2004 10:41 PM Subject: Re: Input weirdo... > I have a new client that i've yet to be able to with over the > modem. So if I'm running a program (readnext etc) but i want to break, I > include this INCLU

Re: Input weirdo...

2004-04-29 Thread Mark Johnson
To: "'U2 Users Discussion List'" <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 8:10 AM Subject: RE: Input weirdo... > Thanks Mark! > > Bjorn managed to find his reply (in an Advanced Pick manual) > just after > I'd sent the request, which kinda wor

RE: Input weirdo...

2004-04-29 Thread Dennis Bartlett
Thanks Mark! Bjorn managed to find his reply (in an Advanced Pick manual) just after I'd sent the request, which kinda worked, but not exactly, but your length of inputbuffer works a charm. Speaking of these SYSTEM thangs - is there anywhere I can get a list of all the settings / variables includ

Re: Input weirdo...

2004-04-28 Thread Mark Johnson
D SYSTEM(14) is the length of the typeahead buffer. D3 for sure and possibly UV/UD. The CLEARSELECT is UV/UD specific. My 1 cent. - Original Message - From: "Dennis Bartlett" <[EMAIL PROTECTED]> To: "'U2 Users Discussion List'" <[EMAIL PROTECTED]>

Re: Input weirdo...

2004-04-28 Thread Glenn Herbert
Also, in place of the INPUT OPT.OUT,1 read to drain, you could use INPUTCLEAR to do the same thing without actually reading anything. At 10:54 AM 4/28/2004, you wrote: We have a program looping through all data files searching for something - sometimes it gets to a file containing several mil

RE: Input weirdo...

2004-04-28 Thread Björn Behr
ish author -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dennis Bartlett Sent: 28 April 2004 04:55 To: 'U2 Users Discussion List' Subject: Input weirdo... We have a program looping through all data files searching for something - sometimes it gets

Re: Input weirdo...

2004-04-28 Thread Glenn Herbert
Problem here, I believe, is that you check using INPUT OPT.OUT,-1 and do action on it, but you never actually drain anything out. Once the test is successful, then you should actually perform an INPUT to drain the buffer of anything, i.e. INPUT OPT.OUT,-1 if OPT.OUT = "S" then INPUT OPT.OUT,1;

Input weirdo...

2004-04-28 Thread Dennis Bartlett
We have a program looping through all data files searching for something - sometimes it gets to a file containing several million records and we'd like to be able to tell it to skip that file and continue with the next file. We've tried the following approaches with said results: (1) OPT.OUT = K