Re: [U2] Upper Case Only

2007-03-18 Thread MAJ Programming
Sent: Friday, March 16, 2007 8:15 AM Subject: RE: [U2] Upper Case Only I think that the upper/lower case issue -- albeit not a show stopper for anyone - is much worse than that. Besides the internal back-n-forth about programming in basic, and what case should be current, I think

RE: [U2] Upper Case Only

2007-03-17 Thread David Wolverton
I wonder if IBM ever got the request? Anyone know if an eCase exists? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stewart Leicester Sent: Friday, March 16, 2007 6:28 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Upper Case Only

Re: [U2] Upper Case Only

2007-03-17 Thread Charles Barouch
] On Behalf Of Stewart Leicester Sent: Friday, March 16, 2007 6:28 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Upper Case Only SEARCH was designed to be fast and, at the time, it was much faster to scan for the first character of the searched-for string and, if you found it, execute a string

Re: [U2] Upper Case Only

2007-03-16 Thread Mats Carlid
One reason for why the upper case only thing started that has been mentioned in this thread is that some early terminals didn't have lower case. This is indeed true but it used to be much worse than that ! The early days computers themselves didn't handle lowercase as they had 6bit characters

RE: [U2] Upper Case Only

2007-03-16 Thread Laura Hirsh
, March 16, 2007 6:23 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Upper Case Only One reason for why the upper case only thing started that has been mentioned in this thread is that some early terminals didn't have lower case. This is indeed true but it used to be much worse than

RE: [U2] Upper Case Only

2007-03-16 Thread dianne
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mats Carlid Sent: Friday, March 16, 2007 6:23 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Upper Case Only One reason for why the upper case only thing started that has been mentioned in this thread is that some early terminals

Re: [U2] Upper Case Only

2007-03-16 Thread Jeff Schasny
Different subject all together. I don't think anyone would disagree that there is a need to store (some) data in upper/lower case. The ongoing discussion has been about program source code, the 'consumer' of which is the machine itself who really doesn't give a hoot one way or another. Oh,

RE: [U2] Upper Case Only

2007-03-16 Thread Laura Hirsh
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mats Carlid Sent: Friday, March 16, 2007 6:23 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Upper Case Only One reason for why the upper case only thing started that has been mentioned in this thread is that some early

Re: [U2] Upper Case Only

2007-03-16 Thread Charles Barouch
PROTECTED] On Behalf Of Mats Carlid Sent: Friday, March 16, 2007 6:23 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Upper Case Only One reason for why the upper case only thing started that has been mentioned in this thread is that some early terminals didn't have lower case. This is indeed

Re: [U2] Upper Case Only

2007-03-16 Thread Martin Phillips
I missed the start of this thread so appologies if this has been said before UV 10.2 introduces a CASE command to turn on / off case sensitivity. Unfortunately, as far as I can see, they don't appear to have documented it (along with quite a lot of other new stuff). Having tried it

RE: [U2] Upper Case Only

2007-03-16 Thread Stewart Leicester
SEARCH was designed to be fast and, at the time, it was much faster to scan for the first character of the searched-for string and, if you found it, execute a string compare instruction. It was also a much simpler algorithm. I later wrote a case-insensitive version but it either never made it

RE: [U2] Upper Case Only

2007-03-16 Thread Ross Ferris
! -Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of Laura Hirsh Sent: Saturday, 17 March 2007 12:15 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Upper Case Only I think that the upper/lower case issue -- albeit not a show stopper for anyone

RE: [U2] Upper Case Only

2007-03-16 Thread Bill H
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Schasny Sent: Friday, March 16, 2007 7:25 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Upper Case Only Different subject all together. I don't think anyone would disagree that there is a need to store

Re:[U2] Upper Case Only

2007-03-15 Thread Mecki Förthmann
Hi, the Pick environment will not recognize non-ECL-type P statements, in your case *with @id like XREF...*, when you type the statement in lower case, because in the Pick environment the proper syntax would be IIRC *with @id = XREF:]* I think it works the other way round too. Mecki Ron

RE: [U2] Upper Case Only

2007-03-15 Thread Bill H
Ron: In PICK mode there is no LIKE keyword. Comparisons use the normal =, #, etc operators. So your example should be: LIST VOC WITH @ID = XREF] AND WITH TYPE = F ...or LIST VOC = XREF] WITH TYPE = F (notice the upper-casing) :-) Hope this helps. Bill Ron Hutchings wrote...

RE: [U2] Upper Case Only

2007-03-15 Thread Ron Hutchings
. __ From: Bill H [EMAIL PROTECTED] Reply-To: u2-users@listserver.u2ug.org To: u2-users@listserver.u2ug.org Subject: RE: [U2] Upper Case Only Date: Thu, 15 Mar 2007 12:02:10 -0700 Ron: In PICK mode there is no LIKE keyword

RE: [U2] Upper Case Only

2007-03-15 Thread Bill H
: Thursday, March 15, 2007 2:25 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Upper Case Only I was using pick as a generic term. I am currently working on an AIX platform running Universe with the pick flavor and the LIKE keyword works. My point was that it has to be in upper