Re: [U2] The CONTINUE statement

2012-04-29 Thread Brian Leach
Laura Bad girl. GOTO TheNaughtyStep :) Brian -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Laura Hirsh Sent: 28 April 2012 04:23 To: 'U2 Users List' Subject: Re: [U2] The CONTINUE statement You are so right

Re: [U2] The CONTINUE statement

2012-04-29 Thread Laura Hirsh
LOL! Thanks Brian. :) -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Brian Leach Sent: Sunday, April 29, 2012 6:56 AM To: 'U2 Users List' Subject: Re: [U2] The CONTINUE statement Laura Bad girl. GOTO

Re: [U2] The CONTINUE statement

2012-04-29 Thread Keith Johnson [DATACOM]
Just to be annoyingly pedantic - the second code snippet is missing an END FOR I = 1 TO X do something IF some condition THEN CONTINUE do something else NEXT I Versus FOR I = 1 TO X do something IF NOT(some condition) THEN do something else NEXT I

Re: [U2] The CONTINUE statement

2012-04-28 Thread Laura Hirsh
:) -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wols Lists Sent: Saturday, April 28, 2012 4:51 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] The CONTINUE statement On 28/04/12 04:22, Laura Hirsh wrote

Re: [U2] The CONTINUE statement

2012-04-27 Thread Symeon Breen
Personally I am a big fan of both CONTINUE and EXIT ! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: 26 April 2012 22:12 To: u2-users@listserver.u2ug.org Subject: [U2] The CONTINUE statement

Re: [U2] The CONTINUE statement

2012-04-27 Thread Laura Hirsh
...@listserver.u2ug.org] On Behalf Of Larry Hiscock Sent: Thursday, April 26, 2012 7:00 PM To: 'Paul Wilson'; 'U2 Users List' Subject: Re: [U2] The CONTINUE statement Please don't feed the troll -- you'll only encourage it to come back for more. If we don't restore a modicum of civility to this list

Re: [U2] The CONTINUE statement

2012-04-27 Thread Laura Hirsh
Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen Sent: Thursday, April 26, 2012 5:51 PM To: U2 Users List Subject: Re: [U2] The CONTINUE statement Of course this breaks the more than one exit point in a loop rule

Re: [U2] The CONTINUE statement

2012-04-27 Thread Wjhonson
10:59 am Subject: Re: [U2] The CONTINUE statement OK. I'm going to come clean. At the cost of my reputation, and future rojects. I LIKE GOTO! Sadly (for me), because all of the negative press his four letter word receives I don't use it anymore. No need to comment, r start a flame war, I just

Re: [U2] The CONTINUE statement

2012-04-27 Thread John Hatherill
...@lhirsh.org] Sent: Friday, April 27, 2012 10:59 AM To: 'U2 Users List' Subject: Re: [U2] The CONTINUE statement OK. I'm going to come clean. At the cost of my reputation, and future projects. I LIKE GOTO! Sadly (for me), because all of the negative press this four letter word receives I don't use

Re: [U2] The CONTINUE statement

2012-04-27 Thread Laura Hirsh
You are so right. Thank you John! -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of John Hatherill Sent: Friday, April 27, 2012 3:24 PM To: U2 Users List Subject: Re: [U2] The CONTINUE statement Good for you

[U2] The CONTINUE statement

2012-04-26 Thread Wjhonson
FOR I = 1 TO X do something IF some condition THEN CONTINUE do something else NEXT I versus FOR I = 1 TO X do something IF NOT(some condition) THEN do something else NEXT I ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] The CONTINUE statement

2012-04-26 Thread Bill Brutzman
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: Thursday, April 26, 2012 5:12 PM To: u2-users@listserver.u2ug.org Subject: [U2] The CONTINUE statement FOR I = 1 TO X do something IF some condition THEN CONTINUE do something else NEXT I versus FOR I = 1 TO X

Re: [U2] The CONTINUE statement

2012-04-26 Thread Wjhonson
at TCL type HELP BASIC CONTINUE -Original Message- From: Bill Brutzman bi...@hkmetalcraft.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Thu, Apr 26, 2012 2:26 pm Subject: Re: [U2] The CONTINUE statement 1. I do not see a continue statement in the UniVerse manual

Re: [U2] The CONTINUE statement

2012-04-26 Thread Bill Brutzman
-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: Thursday, April 26, 2012 5:27 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] The CONTINUE statement at TCL type HELP BASIC CONTINUE -Original Message- From: Bill Brutzman bi

Re: [U2] The CONTINUE statement

2012-04-26 Thread Wjhonson
: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] n Behalf Of Wjhonson ent: Thursday, April 26, 2012 5:27 PM o: u2-users@listserver.u2ug.org ubject: Re: [U2] The CONTINUE statement t TCL type HELP BASIC CONTINUE -Original Message- rom: Bill Brutzman bi

Re: [U2] The CONTINUE statement

2012-04-26 Thread Martin Braid
Here we go again. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: 26 April 2012 22:39 To: u2-users@listserver.u2ug.org Subject: Re: [U2] The CONTINUE statement You said you had no idea what

Re: [U2] The CONTINUE statement

2012-04-26 Thread George Gallen
@listserver.u2ug.org Subject: [U2] The CONTINUE statement FOR I = 1 TO X do something IF some condition THEN CONTINUE do something else NEXT I versus FOR I = 1 TO X do something IF NOT(some condition) THEN do something else NEXT I ___ U2

Re: [U2] The CONTINUE statement

2012-04-26 Thread Wjhonson
, Apr 26, 2012 2:44 pm Subject: Re: [U2] The CONTINUE statement If there is only one condition then that's ok (also, you will need to zero the ondition Prior to do something, otherwise, it will function as an EXIT) But, if you have more than one place and/or condition in the loop that you want

Re: [U2] The CONTINUE statement

2012-04-26 Thread George Gallen
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: Thursday, April 26, 2012 5:47 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] The CONTINUE statement You mean like FOR I = 1 TO X do something IF condition1 THEN CONTINUE IF condition2 THEN CONTINUE

Re: [U2] The CONTINUE statement

2012-04-26 Thread George Gallen
Of George Gallen Sent: Thursday, April 26, 2012 5:49 PM To: U2 Users List Subject: Re: [U2] The CONTINUE statement No more like FOR I=1 TO X Do some stuff If condition1 THEN CONTINUE Do some more stuff If condition2 THEN CONTINUE Do a little more stuff If condition3 THEN CONTINUE

Re: [U2] The CONTINUE statement

2012-04-26 Thread Bill Brutzman
...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: Thursday, April 26, 2012 5:39 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] The CONTINUE statement You said you had no idea what it was. How are you going to respond to the point, without

Re: [U2] The CONTINUE statement

2012-04-26 Thread Wjhonson
The point is versus, compare and contrast, opine, pontificate, soapbox, et cetera -Original Message- From: Bill Brutzman bi...@hkmetalcraft.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Thu, Apr 26, 2012 2:52 pm Subject: Re: [U2] The CONTINUE statement 1. I never used

Re: [U2] The CONTINUE statement

2012-04-26 Thread Wjhonson
@listserver.u2ug.org Sent: Thu, Apr 26, 2012 3:17 pm Subject: Re: [U2] The CONTINUE statement Why... even Joey Buttafucco has got better polemics... --Bill -Original Message- rom: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] n Behalf Of Wjhonson ent

Re: [U2] The CONTINUE statement

2012-04-26 Thread Paul Wilson
Some of you are PATHETIC - needing to pat your own back - wtf From: Wjhonson wjhon...@aol.com To: u2-users@listserver.u2ug.org Sent: Thursday, April 26, 2012 6:19 PM Subject: Re: [U2] The CONTINUE statement You're trying to make me form an argument

Re: [U2] The CONTINUE statement

2012-04-26 Thread Larry Hiscock
...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Paul Wilson Sent: Thursday, April 26, 2012 3:25 PM To: U2 Users List Subject: Re: [U2] The CONTINUE statement Some of you are PATHETIC - needing to pat your own back - wtf From: Wjhonson

Re: [U2] The CONTINUE statement

2012-04-26 Thread dennis bartlett
Hey fella who said he didn't see a CONTINUE.. isn't the point of a user group to learn new things? I bet there are many things you've never seen - happens to me too. What I love about user groups is that, while there are a hundred good ways to achieve something, there are really clever ways, e.g.

Re: [U2] The CONTINUE statement

2012-04-26 Thread Bill Brutzman
I have always admired Peter Norton's gift for writing with clarity. If a valid definition of the word obvious... is... easy to see... It was not apparent to me... that there were two code snippets being compared to each other. Thus, I would LIKE to apologize... but I am NOT going to do so.

Re: [U2] The CONTINUE statement

2012-04-26 Thread Bill Haskett
- *From:* sfr192...@yahoo.com *To:* U2 Users List u2-users@listserver.u2ug.org *Date:* 4/26/2012 3:24 PM *Subject:* Re: [U2] The CONTINUE statement Some of you are PATHETIC - needing to pat your own back - wtf From: Wjhonsonwjhon...@aol.com To: u2-users

Re: [U2] The CONTINUE statement

2012-04-26 Thread Wjhonson
- Original Message - *From:* sfr192...@yahoo.com *To:* U2 Users List u2-users@listserver.u2ug.org *Date:* 4/26/2012 3:24 PM *Subject:* Re: [U2] The CONTINUE statement Some of you are PATHETIC - needing to pat your own back - wtf From: Wjhonsonwjhon...@aol.com

Re: [U2] The CONTINUE statement

2012-04-26 Thread dennis bartlett
List u2-users@listserver.u2ug.org Sent: Thu, Apr 26, 2012 6:09 pm Subject: Re: [U2] The CONTINUE statement What I'm wondering, and I probably shouldn't, is what this thread, and similar ones, are meant to be; trolling, pontificating, postulating, or just sowing the seeds of discontent