RE: [U2] Deciphering Pick UniBasic statement

2005-12-11 Thread Jacques G.
Caleb's. It could take days to unravel the code by hand versus the few minutes needed to send it out to www.srs4uv.com. From one horror story I read on the site about a programmer that had sabotaged source code: The company used the SRS on the object code they were running. In addition, they

Re: [U2] Deciphering Pick UniBasic statement

2005-12-11 Thread Mark Johnson
, 2005 11:31 AM Subject: RE: [U2] Deciphering Pick UniBasic statement Caleb's. It could take days to unravel the code by hand versus the few minutes needed to send it out to www.srs4uv.com. From one horror story I read on the site about a programmer that had sabotaged source code

RE: [U2] Deciphering Pick UniBasic statement

2005-12-10 Thread Gyle Iverson
Hello, Charles. Charles Stevenson wrote... I have not had occasion to use the srs4uv.com decompiler service. Probably worth the price when you really need it. It can be. Just imagine programs with hundreds of lines of code like Caleb's. It could take days to unravel the code by hand versus the

RE: [U2] Deciphering Pick UniBasic statement

2005-12-10 Thread Dan Fitzgerald
. O'Rourke Dan Fitzgerald From: Stevenson, Charles [EMAIL PROTECTED] Reply-To: u2-users@listserver.u2ug.org To: u2-users@listserver.u2ug.org Subject: RE: [U2] Deciphering Pick UniBasic statement Date: Sat, 10 Dec 2005 01:32:08 -0500 I have not had occasion to use the src4uv.com decompiler

RE: [U2] Deciphering Pick UniBasic statement

2005-12-09 Thread Brian Leach
Sent: 08 December 2005 21:26 To: u2-users@listserver.u2ug.org Subject: RE: [U2] Deciphering Pick UniBasic statement The general consensus of replies confirms my findings of how this was originally meant to be nested. Thanks for all your help. Caleb [EMAIL PROTECTED] 12/08/05 12:09PM

Re: [U2] Deciphering Pick UniBasic statement

2005-12-09 Thread Jerry Banker
Actually it looks like some case tool code to me not a programmers code. - Original Message - From: Brian Leach [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, December 09, 2005 3:01 AM Subject: RE: [U2] Deciphering Pick UniBasic statement Caleb, Just to point out

RE: [U2] Deciphering Pick UniBasic statement

2005-12-09 Thread Gyle Iverson
Hello, Charles. Charles Stevenson wrote... Everyone's going to jump in with the answer, but here's a way to figure it out yourself (on UV, but not UD): Use VLIST. I don't know which is more painful, the original code or the VLIST output. ;-) I decompiled Caleb's code using the srs4uv.com

RE: [U2] Deciphering Pick UniBasic statement

2005-12-09 Thread Stevenson, Charles
I have not had occasion to use the src4uv.com decompiler service. Probably worth the price when you really need it. I am thankful for the wonderful www.src4uv.com freebie download, SRC.UV.HEADER, that allows access to info about the object file from an I-descriptor subroutine. Besides VLIST, but

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Jim Koca
Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Caleb Ng Sent: Thursday, December 08, 2005 1:11 PM To: u2-users@listserver.u2ug.org Subject: [U2] Deciphering Pick UniBasic statement I'm trying to decipher and break the following IF/THEN/ELSE

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Ron Hutchings
IF P(2)-AR(12)=28 THEN CC=CC+1; INS 0 BEFORE AR(14)1,1; DEL AR(14)1,9; ELSE IF AR(13)=DATE() THEN CC=CC ELSE INS 1 BEFORE AR(14)1,1; DEL AR(14)1,9 Here is my interpretation: IF P(2)-AR(12)=28 THEN CC=CC+1 INS 0 BEFORE AR(14)1,1 DEL AR(14)1,9 END ELSE IF AR(13)=DATE() THEN

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Larry Hiscock
Hiscock Western Computer Services -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Caleb Ng Sent: Thursday, December 08, 2005 1:11 PM To: u2-users@listserver.u2ug.org Subject: [U2] Deciphering Pick UniBasic statement I'm trying to decipher and break

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread u2
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Caleb Ng Sent: Thursday, December 08, 2005 2:11 PM To: u2-users@listserver.u2ug.org Subject: [U2] Deciphering Pick UniBasic statement I'm trying to decipher and break the following IF/THEN/ELSE statement

Re: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Timothy Snyder
Caleb Ng [EMAIL PROTECTED] wrote on 12/08/2005 02:10:32 PM: IF P(2)-AR(12)=28 THEN CC=CC+1; INS 0 BEFORE AR(14)1,1; DEL AR(14)1,9; ELSE IF AR(13)=DATE() THEN CC=CC ELSE INS 1 BEFORE AR(14)1,1; DEL AR(14)1,9 OK, this is some kind of test, right? Nobody actually put that mess in production

Re: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Richard Brown
- Original Message - From: Caleb Ng [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, December 08, 2005 2:10 PM Subject: [U2] Deciphering Pick UniBasic statement I'm trying to decipher and break the following IF/THEN/ELSE statement into multiple lines because I need

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Norman Morgan
How about: IF P(2) - AR(12) = 28 THEN CC = CC+1 INS 0 BEFORE AR(14)1,1 DEL AR(14)1,9 END ELSE IF AR(13) = DATE() THEN CC = CC END ELSE INS 1 BEFORE AR(14)1,1 DEL AR(14)1,9 END END === Norman

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Lance Jahnke
: [U2] Deciphering Pick UniBasic statement I'm trying to decipher and break the following IF/THEN/ELSE statement into multiple lines because I need to add some logic into it. Being a PICK newbie, I'm having difficulty understanding it. I believe this code was ported from an old MD Pick system but I

Re: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Jerry Banker
: Thursday, December 08, 2005 1:10 PM Subject: [U2] Deciphering Pick UniBasic statement I'm trying to decipher and break the following IF/THEN/ELSE statement into multiple lines because I need to add some logic into it. Being a PICK newbie, I'm having difficulty understanding it. I believe this code

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Peter Gonzalez
Pick UniBasic statement I'm trying to decipher and break the following IF/THEN/ELSE statement into multiple lines because I need to add some logic into it. Being a PICK newbie, I'm having difficulty understanding it. I believe this code was ported from an old MD Pick system but I want to make

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Stevenson, Charles
Everyone's going to jump in with the answer, but here's a way to figure it out yourself (on UV, but not UD): Use VLIST. Compile the program, then VBLIST will decompile the object (pcode) into an assembler-kinda-looking output you can see step by step what's happening. CT CDS.BP CALEB

RE: [U2] Deciphering Pick UniBasic statement

2005-12-08 Thread Caleb Ng
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Caleb Ng Sent: Thursday, December 08, 2005 1:11 PM To: u2-users@listserver.u2ug.org Subject: [U2] Deciphering Pick UniBasic statement I'm trying to decipher and break the following IF/THEN/ELSE statement into multiple