RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Stevenson, Charles
Could your ANS variable have contained Char(255) ? A string containing Char(255) won't passes the (ANS MATCHES '0N') test. If anyone can show me a string containing characters other than the 10 digits that passes that test, I'd be much obliged. cds --- u2-users mailing list

RE: [U2] Unidata ECL prompt

2005-03-10 Thread Andrew Lakeland
The command in Universe I UVPROMPT V Verb - Change the uniVerse prompt characters Not sure in Unidata. Do I search on the VOC for any entry with the word ...prompt... in it. Andy -Original Message- From: Baakkonen, Rodney [mailto:[EMAIL

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0 N' ANS0)

2005-03-10 Thread Andrew Lakeland
Charles, This is a little crude, but it might work. Try to convert the input to a time. If the oconv is successfull no problem, it must be a number. If it fails because they have entered something dodgy, send the value of what they entered to yourself in an email. Mickey Mouse Test INPUT A B

RE: [U2] Unidata ECL prompt

2005-03-10 Thread Ken Wallis
Sadly not as far as I can tell. The prompt is a message in a central file. You can't update it without all accounts and users seeing the same change. I haven't looked hard at doing this since 4.1 though. It is possible that a feature has been snuck in quietly since then, but nothing I'm aware

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Piers Angliss
A very long numeric string will do this, see sample code below: 0001: ARRAY = '12345' ;* Just so array has a value 0002: VAR = STR('1',512) 0003: IF VAR MATCHES 0N THEN PRINT 'Numeric' 0004: DUM = ARRAYVAR 0005: END RUN BP T2 Numeric Program T2: Line 4, Nonnumeric data when numeric required.

Re: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Mats Carlid
Don't bet on it! :^) IMHO unicode characters for indian,chinese or arabic digits should pass the test but I haven't tried. -- mats Stevenson, Charles wrote: Could your ANS variable have contained Char(255) ? A string containing Char(255) won't passes the (ANS MATCHES '0N') test. If anyone

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Alfke, Colin
I found ANS = '':@VM will pass. I didn't try any combinations/derivatives. I also saw another post where a very long number passed the test but failed in the array assignment. Colin Alfke -Original Message- From: Stevenson, Charles Could your ANS variable have contained Char(255)

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Stevenson, Charles
BINGO! This is exactly it! Thank-you Piers, and everyone else for your thoughtful responses along the way. I am sure this is it. We've had other instances where users camp on a key. Typically: INPUT ANS READ ... FROM F, ANS ELSE... where this generates an error in trying to read an ID

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Stevenson, Charles
You may be right. I've no experience with unicode stuff, working strictly in English. I'm happy believing Piers Angliss's too-long-string theory. Thanks for the input, cds -Original Message- From: Mats Carlid Sent: Thursday, March 10, 2005 4:39 AM To: u2-users@listserver.u2ug.org

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Stevenson, Charles
Colin, I found the opposite. You're on UD, right? I'm on UV. UV has a !MATCHES subroutine to handle the case where ANS is a dynamic array. There is some UV/UD difference in the multivalue handling. This may be one of those differences. CT CDS.BP COLIN COLIN 0001 ANS = '':@VM 0002

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0 N' ANS0)

2005-03-10 Thread Bill H.
I ran this on D3 (flashed and unflashed). :bptest $options ext ; ans = str('1',1024) ; if ans matches '0N' then crt 'Yes' else crt 'No' ; ans = '':char(253) ; if ans matches '0N' then crt 'Yes' else crt 'No' BpTest*323682190 . [820] Creating FlashBASIC Object ( Level 0 ) ... [241] Successful

Re: [U2] Unidata ECL prompt

2005-03-10 Thread Doug Miller
At 04:13 PM 3/9/2005, you wrote: Is there a way to change the ECL prompt in Unidata to do the same type of thing? - Thanks Rod Many have written their own ECL emulator shell in which they then have full control of this. You might even be able to find someone on the list to give up their code to

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread John Solie
I'm wondering why y'all are using a ...MATCHES 0N... Usually, I'll use the NUM() function. The code snippet in one of the first messages in this thread would be: BEGIN CASE CASE NUM(ANS) AND ANS 0 more code here Or is NUM() something that lives only in UniData? :ED JBP TT150 Top of

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0 N' ANS0)

2005-03-10 Thread Stevenson, Charles
Bill, UV same as D3. UD different (from how I read Colin). UV: Yes No UD: Yes Yes cds -Original Message- From: Bill H. I ran this on D3 (flashed and unflashed). :bptest $options ext ; ans = str('1',1024) ; if ans matches '0N' then crt 'Yes' else crt 'No' ; ans =

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Alfke, Colin
Because num() will OK 1.1, -22 etc that you wouldn't want to use in an array expression. Colin Alfke -Original Message- From: John Solie I'm wondering why y'all are using a ...MATCHES 0N... Usually, I'll use the NUM() function. The code snippet in one of the first messages in

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Alfke, Colin
Yes, I'm on UniData (testing on 5.1.27). We don't have the !matches version. However, I did test some very large values in the array and didn't get the non-numeric error. Some more of those things that are almost the same between UniData and UniVerse but not quite. No wonder they don't want to

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N ' ANS0)

2005-03-10 Thread Andrew Lakeland
Hi John, Absolutely, there are loads of ways for the check to have been made, but it's more fun to get to the bottom of the problem, what's life without a little challenge here and there. Plus we all learnt something for next time. Andy -Original Message- From: John Solie

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread John Solie
I guess it depends on what you're trying to do. The decimal point breaks the 0N (unless you do 0N.0N). :-) However, I thought the original poster was trying to prevent a non-numeric warning. A NUM() would catch that, an INT() to lop off the decimal, and a check against a DCOUNT() for sanity

RE: [U2] Unidata ECL prompt

2005-03-10 Thread Allen E. Elwood
I was about to say the same thing. I use a full screen editor that I wrote which not only tells me the account that I'm in, but also wishes me a good morning/good afternoon/good night/good grief message depending on the time when I start it up. Mine only works on Manage-2000 systems because I

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Stevenson, Charles
-Original Message- From: John Solie I'm wondering why y'all are using a ...MATCHES 0N... Usually, I'll use the NUM() function. The code snippet in one of the first messages in this thread would be: BEGIN CASE CASE NUM(ANS) AND ANS 0 more code here Or is NUM() something

[U2] [UV] Help with HELP

2005-03-10 Thread Barry Brevik
Running UV 9.6.1.3 on NT. Terminal emulation is VP60 using wIntegrate. Does anyone know what term type the HELP command expects to see? I can sorta make out the screen, but the colors are all wierd and none of the navigation keys work at all... in fact any of the page up/down or arrow keys just

[U2] Re: Help with HELP

2005-03-10 Thread Jeff Schasny
Try SET.TERM.TYPE VP60 You can put it in the LOGIN voc entry so it executes whenever you log in -Original Message- Running UV 9.6.1.3 on NT. Terminal emulation is VP60 using wIntegrate. Does anyone know what term type the HELP command expects to see? I can sorta make out the screen,

RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0)

2005-03-10 Thread Stevenson, Charles
I think we've squeezed enough blood outa this turnip, except for one niggling little question. What's with the creeping number of spaces in the subject line in the various posts?: Subject: RE: [U2] [UV] non-numeric error after passing (ANS MATCHES '0N' ANS0) RE: [U2] [UV] non-numeric error

[U2] saving SAVEDLISTS files unintentionally

2005-03-10 Thread Peter Ivanick
Hola - In preparation for our migration we're trying to clean up a lot of cruft on our old syustem that's no longer necessary, and so we're sorting through the SAVEDLISTS directories for temporary files that are no longer needed (some of them are, apparently, in constant use). Many of the

[U2] [OT] Wonky?

2005-03-10 Thread Gordon J Glorfield
Wonky? I'm sorry but I've never heard that term. What does it mean? Gordon J. Glorfield Sr. Applications Developer MAMSI (A UnitedHealth Company) 301-360-8839 [EMAIL PROTECTED] wrote on 03/10/2005 02:30:36 PM: [snip] leaving my terminal all wonky. [snip] This e-mail, including

Re: [U2] saving SAVEDLISTS files unintentionally

2005-03-10 Thread Jeff Schasny
I think the STACKWRITE voc entry is what you are looking for original message [snip] According to our PICK developer there's a switch/setting in UniVerse that determines whether these files get written out saved if not explicitly meant to be, but I'm not sure where to look in

RE: [U2] [OT] Wonky?

2005-03-10 Thread John Solie
It means that the terminal is about to turn green, get orange hair and wear white gloves whilst the user is going to turn into a giant blueberry... Cf Willy Wonky and the Chocolatey Factory -- John Solie -- Professional Hospital Supply -- 951-296-2600 -Original Message- From:

RE: [U2] [OT] Wonky?

2005-03-10 Thread Wendy Smoak
Gordon J Glorfield wrote: Wonky? I'm sorry but I've never heard that term. What does it mean? http://www.jargon.net/jargonfile/w/wonky.html For hours of entertainment, start here: http://www.jargon.net/jargonfile/t/TheJargonLexicon.html -- Wendy --- u2-users mailing list

Re: [U2] saving SAVEDLISTS files unintentionally

2005-03-10 Thread Jerry Banker
Set STACKWRITE to off in the second field. - Original Message - From: Peter Ivanick [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, March 10, 2005 2:12 PM Subject: [U2] saving SAVEDLISTS files unintentionally Hola - In preparation for our migration we're trying to

RE: [U2] saving SAVEDLISTS files unintentionally

2005-03-10 Thread Phil Walker
STACKWRITE [OFF|ON] Place this in the LOGIN paragraph or even the UV.LOGIN paragraph in the UV account for a system wide setting. Cheers, Phil Walker +64 27 5336294 +64 3 3120352 [EMAIL PROTECTED] Gnosys Consulting Limited 25 Roscrea Place, Mandeville North, RD2 Kaiapoi, North Canterbury

Re: [U2] [OT] Wonky?

2005-03-10 Thread Raymond DeGennaro II
At 15:25 -0500 2005/03/10, Gordon J Glorfield wrote: Wonky? I'm sorry but I've never heard that term. What does it mean? Officially: wonky: adj: 1: turned or twisted toward one side; a...youth with a gorgeous red necktie all awry- G.K.Chesterton [syn: askew, awry, cockeyed, lopsided] 2:

RE: [U2] [UV] Help with HELP

2005-03-10 Thread Stuart . Boydell
There's a bug in a UV help routine, CHOICE.BOX.B. So help doesn't render properly if the screen is greater than 80 columns. Stuart. -Original Message- From: Barry Brevik Running UV 9.6.1.3 on NT. Terminal emulation is VP60 using wIntegrate. Does anyone know what term type the HELP

RE: [U2] [OT] Wonky?

2005-03-10 Thread Ross Ferris
It was Willy WONKA ! The film was actually bankrolled by Quaker Oates IIRC, who released the Wonka candy range (the things I'll watch when stuck in a hotel room even amazes me sometimes) Ross Ferris Stamina Software Visage  an Evolution in Software Development -Original Message-

RE: [U2] [OT] Wonky?

2005-03-10 Thread John Solie
It was Willy WONKA ! Creative license... :-) I also got the colors wrong. It should have been Orange with Green hair. :-) -- John Solie -- Professional Hospital Supply -- 951-296-2600 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ross

[U2] [UD] Objectcall again -- Australia 48-2

2005-03-10 Thread Steven Frost
I am still having a bit of an issue with the Objectcall API Objectcall ping works fine to both the live database and the test database ( different unix servers) When the uniapi.ini file is pointing to the live system , the connection via the web page is good. When we change the uniapi.ini to

RE: [U2] [OT] Wonky?

2005-03-10 Thread Debster
...and in the case of Johnny Depp, ala Tim Burton having really weird optical fixtures and audio features (un-Depp like teeth) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of John Solie Sent: Thursday, March 10, 2005 9:16 PM To: u2-users@listserver.u2ug.org

RE: [U2] OT MV-Base

2005-03-10 Thread Tony Gravagno
My name is on this so I'll respond here. I've said a few times before, this is not an mvBASE forum and I don't believe questions should be posted here about other platforms and issues not even remotely related to U2 or this special interest group. Please post your inquiry in the mvBASE section

RE: [U2] [OT] Wonky?

2005-03-10 Thread Moderator
Let's move this thread to u2-Community. To subscribe please visit http://listserver.u2ug.org/ David Jordan, Modertor --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] Unique Ids

2005-03-10 Thread Bob Gerrish
Although I have seen most of the Unique ID' scenarios that were presented, there is one that has been missed. I have seen keys that appeared identical but had one or more trailing spaces. They appeared unique to the untrained observer. AND this could happen with a SQL database, also if the key