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
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 INCLUDE. IF SYSTEM(14) # 0 THEN INPUT A IF A="Q" THEN CLEARSELECT (sic) ; STOP IF A="D" THEN DEBUG END SYSTEM(14) is the length of th

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
USE INPUTCLEAR not CLEARINPUT Regards Björn Behr Programmer HYFLO Southern Africa (Pty) Ltd Tel : +27 11 386 5800 Fax : +27 11 444 5391 Mail: [EMAIL PROTECTED] WWW : http://www.hyflo.co.za __

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;