Re: [U2] re ceiving error message XX record corrupt on logto

2010-05-24 Thread inquieti
Hi Susan In your logto script try adding CLEARCOMMON then LOGIN so that you go in cleanly. You can add a Logto subroutine in SB+, go to the Admin screen, SB+ Setup, SB+ Control Parameters, F9 Logto Sub. I've experienced this error when logging between accounts from different versions of SB+

Re: [U2] OPENSEQ and Abnormal termination of UV

2010-05-24 Thread Brian Leach
Wol In BASIC, *EVERYTHING* is a string (apart from file variables). Therefore any comparison should be valid. To be more precise, no. UniVerse Basic is a run-time typed language (like PHP) not a string language. So it gets the performance and storage benefits of real types, and coerces between

Re: [U2] Question on Dictionary Items

2010-05-24 Thread Brian Leach
Jim First value (a number of ways but this will work): 002 9 008 F;9R No, this means 'repeat the value in field 9 for the depth of the expression' e.g. if you wanted to multiply each value in a multivalued field with a single valued field to get a multivalued result. Last value: 002 9 008

Re: [U2] SB Dict with User Subroutine and TCL

2010-05-24 Thread Israel, John R.
Stuart, You rock!!! This works perfectly! You the man! John Israel Senior Programmer/Analyst Dayton Superior Corporation 721 Richard St. Miamisburg, OH  45342 937-866-0711 x44380 -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] Print Wizard on Linux

2010-05-24 Thread Brutzman, Bill
I mostly agree with Jeff's philosophy but... What alternative does Jeff's recommend as the fix? --Bill -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Powell Sent: Sunday, May 23, 2010 10:19 PM To: U2 Users

Re: [U2] Print Wizard on Linux

2010-05-24 Thread Bob Rasmussen
On Mon, 24 May 2010, Brutzman, Bill wrote: I mostly agree with Jeff's philosophy but... What alternative does Jeff's recommend as the fix? I understand it as well. However, the dearth of device-independent printer support in Linux/Unix environments limits the options. Let me sugget some

Re: [U2] Question on Dictionary Items

2010-05-24 Thread Bill Haskett
Brian: This is an old Pick trick. The 1st correlative always returns the first value. The 2nd correlative always returns the last. When I converted from D3 to UniData I changed these kinds of things to: First value: 002 EXTRACT ( ACCTS, 1, 1, 0 ) Last value: 002 EXTRACT ( ACCTS, 1, 0, 0 )

Re: [U2] receiving error message XX record corrupt on logto

2010-05-24 Thread Susan Lynch
Kevin, I just went into each group that has restricted accounts, into each account, and saved the first menu selection's system record. It did not help, unfortunately. Susan Lynch F. W. Davison COmpany, Inc. - Original Message - From: Kevin King precisonl...@gmail.com To: U2 Users

Re: [U2] Print Wizard on Linux

2010-05-24 Thread Jeff Powell
Is this a rhetorical question? On 05/24/2010 09:44 AM, Brutzman, Bill wrote: I mostly agree with Jeff's philosophy but... What alternative does Jeff's recommend as the fix? ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] Print Wizard on Linux

2010-05-24 Thread Jeff Powell
On 05/24/2010 10:10 AM, Bob Rasmussen wrote: On Mon, 24 May 2010, Brutzman, Bill wrote: I mostly agree with Jeff's philosophy but... What alternative does Jeff's recommend as the fix? I understand it as well. However, the dearth of device-independent printer support in

[U2] QSORT (Or something like that)

2010-05-24 Thread Shawn Hayes
I read a post from Charlie thanking Tony for the QSORT tip.  I remember using something like this a long time ago... What I am looking for is a way to sort the values of a dynamic array.  Lets  say that attributes 1,2,3 of the variable A are all associated.  I want to sort the values of A1 and

Re: [U2] Print Wizard on Linux

2010-05-24 Thread Brutzman, Bill
It is not a rhetorical question. It's ok to be not be in favor of certain technologies and methodologies. By way of analogy, come election day, the voting machine only tallies who I voted for, not who (or what) I am against. Thus, people asking for help and insight (on this list) probably

Re: [U2] re ceiving error message XX record corrupt on logto

2010-05-24 Thread Susan Lynch
I tried this - it did not seem to help. Thanks for the idea, though. And thanks to all who have tried to help on this one. Susan Lynch F. W. Davison Company, Inc. - Original Message - From: inquieti dinqui...@zafire.com To: u2-users@listserver.u2ug.org Sent: 05/24/2010 4:26 AM

Re: [U2] receiving error message XX record corrupt on logto

2010-05-24 Thread Susan Lynch
Stuart, I have commented out the WW.SB.RB from the LOGIN on that account, and when we do an MM, we get the menu minus the first system - all the other systems appear to be working normally. At least this way, they can get most of their work done on the account while I am trying to figure this

Re: [U2] Question on Dictionary Items

2010-05-24 Thread Tony Gravagno
From: Brian Leach Jim wrote: Last value: 002 9 008 F;9;P;S;_ Not sure what you're trying to achieve here. It's equivalent to @RECORD9 - SUM(@RECORD9).. Or am I missing something? Explained: nospamNebula-RnD.com/blog/tech/mv/2010/05/lastmv.html Tony Gravagno Nebula Research and

Re: [U2] QSORT (Or something like that)

2010-05-24 Thread Rex Gozar
You can find these subroutines on PickWiki.com: CALL ROW2COL(A) ;* flip fields to values CALL QUICKSORT(A, 1, AR) ;* sort on first value CALL ROW2COL(A) ;* flip back rex ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] QSORT (Or something like that)

2010-05-24 Thread Charlie Noah
Shawn, Betcha Tony's is faster ;^) (it's scary fast). Charlie On 05-24-2010 2:40 PM, Shawn Hayes wrote: Thanks Rex... I just created a little routine to do this also. I thought that it might have been built in to the Unibasic language. Anyways, here is the code I came up with (not fully

Re: [U2] QSORT (Or something like that)

2010-05-24 Thread Charlie Noah
I probably ought to qualify the importance of speed here. We use QSORT to sort thousands of entries, with a dozen or more associated arrays. QSORT's relative speed doesn't drop with heavy volume as some sort routines can. We've all probably written sort routines, implementing various