RE: [U2] UV basic assignment error ?

2007-09-12 Thread Timothy Snyder
> As far as I can tell, UD doesn't have a BASIC runtime-error log. Oops - haphazard reading on my part. You're correct, of course. I actually get a lot of good information from the UniData logs that do exist, but then those are things that pertain more to what I normally do. And, as you poin

RE: [U2] UV basic assignment error ?

2007-09-11 Thread Bill Haskett
u2ug.org >Subject: RE: [U2] UV basic assignment error ? > >> Too bad UD doesn't feel the same way. :-( > >I'm not sure what this references, but UniData does have a series of log >files. They're text files ($UDTBIN/*.log and $UDTBIN/*.errlog), and the >i

RE: [U2] UV basic assignment error ?

2007-09-11 Thread Timothy Snyder
> Too bad UD doesn't feel the same way. :-( I'm not sure what this references, but UniData does have a series of log files. They're text files ($UDTBIN/*.log and $UDTBIN/*.errlog), and the information doesn't scroll away if you don't catch the entries quickly enough. Tim Snyder Consulting I

RE: [U2] UV basic assignment error ?

2007-09-11 Thread Bill Haskett
ott Ballinger >Subject: RE: [U2] UV basic assignment error ? > [snipped] >Learn to routinely monitor uv/errlog for runtime errors like this that >might slip by your users. You can catch these latent bugs and fix them >at their source, rather than waiting for users to complain abou

RE: [U2] UV basic assignment error ?

2007-09-11 Thread Brian Leach
All For anyone who didn't pick up on Charles' timely plug (thanks Charles): The U2UG have published a new Wiki. It's waiting for your content to turn this into the most complete resource for the IBM U2 community. You can find the Wiki on the U2UG website. Registration is separate, and all U2-

RE: [U2] UV basic assignment error ?

2007-09-11 Thread Moderator
REPOSTED FOR NON-MEMBER ADDRESS: "Louie Bergsagel" <[EMAIL PROTECTED]> Bounce Notice: If you read this list through Indexfocus, Nabble, or any other replicator - and you would like to be able to participate - sign up directly with us. Here's all you need to know: To subscribe or resubscribe ple

RE: [U2] UV basic assignment error ?

2007-09-11 Thread Jeff Marcos
bject: [U2] UV basic assignment error ? Here is a weird UV error condition that I just spent way too long debugging: >CT BP SB SB 0001 X = "" 0002 IF X EQ "" THEN X = Y 0003 PRINT "ONE" 0004 PRINT "TWO" 0005 PRINT "THREE" 0006 PRINT

RE: [U2] UV basic assignment error ?

2007-09-10 Thread Stevenson, Charles
Scott, This is a known behavior. It is by design, so I won't even call it a bug, although it sure can be misleading, as you've found out! It's an excellent question & ought to go under some sort of FAQ, in the new U2UG Wiki maybe. Here's the question, with an answer below: > Here is a weird UV

RE: [U2] UV basic assignment error ?

2007-09-10 Thread Allen E. Elwood
Dana Moore Subject: [U2] UV basic assignment error ? Here is a weird UV error condition that I just spent way too long debugging: >CT BP SB SB 0001 X = "" 0002 IF X EQ "" THEN X = Y 0003 PRINT "ONE" 0004 PRINT "TWO" 0005 PRINT "THREE" 0

[U2] UV basic assignment error ?

2007-09-10 Thread Scott Ballinger
Here is a weird UV error condition that I just spent way too long debugging: >CT BP SB SB 0001 X = "" 0002 IF X EQ "" THEN X = Y 0003 PRINT "ONE" 0004 PRINT "TWO" 0005 PRINT "THREE" 0006 PRINT X 0007 Y = "A" >RUN BP SB ONE TWO THREE Program "SB": Line 6, Variable "X" previously undefined.