Re: [U2] ITYPE BASIC use?

2010-01-12 Thread Karl Pearson
From: u2-users-boun...@listserver.u2ug.org [u2-users-boun...@listserver.u2ug.org] On Behalf Of Karl Pearson [ka...@ourldsfamily.com] Sent: Friday, January 08, 2010 12:12 PM To: u2-users@listserver.u2ug.org Subject: [U2] ITYPE BASIC use? I have a client who would like to use the uniVerse

Re: [U2] ITYPE BASIC use? SOLVED

2010-01-12 Thread Karl Pearson
-boun...@listserver.u2ug.org] On Behalf Of Karl Pearson [ka...@ourldsfamily.com] Sent: Friday, January 08, 2010 12:12 PM To: u2-users@listserver.u2ug.org Subject: [U2] ITYPE BASIC use? I have a client who would like to use the uniVerse ITYPE function but the HELP (HELP BASIC ITYPE

Re: [U2] ITYPE BASIC use?

2010-01-11 Thread Mecki Foerthmann
...@rocketsoftware.com From: u2-users-boun...@listserver.u2ug.org [u2-users-boun...@listserver.u2ug.org] On Behalf Of Karl Pearson [ka...@ourldsfamily.com] Sent: Friday, January 08, 2010 12:12 PM To: u2-users@listserver.u2ug.org Subject: [U2] ITYPE BASIC use

Re: [U2] ITYPE BASIC use?

2010-01-11 Thread Bill Haskett
From: u2-users-boun...@listserver.u2ug.org [u2-users-boun...@listserver.u2ug.org] On Behalf Of Karl Pearson [ka...@ourldsfamily.com] Sent: Friday, January 08, 2010 12:12 PM To: u2-users@listserver.u2ug.org Subject: [U2] ITYPE BASIC use? I have a client who would like to use the uniVerse ITYPE

Re: [U2] ITYPE BASIC use?

2010-01-10 Thread Anthony W. Youngman
In message f1eed293-d08d-4d31-87c3-de5dd8acc...@lynden.com, Rick Nuckolls r...@lynden.com writes I doubt that I will be the only one to reply, but The variables @id and @record must be set prior to the call, as in: Note that both of these are *optional* *if* they aren't used. But it's

Re: [U2] ITYPE BASIC use?

2010-01-10 Thread Rick Nuckolls
You are, of course, correct. If your itype does not reference the id field of the record, then I do not necessary to assign @id. My bias towards always assigning it comes from experience writing utilities, where no such assumptions may be made, rather then writing code dependent on the

Re: [U2] ITYPE BASIC use?

2010-01-10 Thread Wally Terhune
-users-boun...@listserver.u2ug.org] On Behalf Of Karl Pearson [ka...@ourldsfamily.com] Sent: Friday, January 08, 2010 12:12 PM To: u2-users@listserver.u2ug.org Subject: [U2] ITYPE BASIC use? I have a client who would like to use the uniVerse ITYPE function but the HELP (HELP BASIC ITYPE

Re: [U2] ITYPE BASIC use?

2010-01-09 Thread Mecki Foerthmann
The documentation states to assign a value to variable @RECORD first otherwise the code will fail. So instead of read REC from CONF,KEY then try read @RECORD from CONF,KEY then Karl Pearson wrote: I have a client who would like to use the uniVerse ITYPE function but the HELP (HELP BASIC ITYPE)

[U2] ITYPE BASIC use?

2010-01-08 Thread Karl Pearson
I have a client who would like to use the uniVerse ITYPE function but the HELP (HELP BASIC ITYPE) documentation is wrong. For example, here's a sample piece of code, which duplicates the HELP code sample: 6 DONE = 0 7 8 open DICT,CONF to D.CONF else stopm No DICT CONF file 9

Re: [U2] ITYPE BASIC use?

2010-01-08 Thread Rick Nuckolls
I doubt that I will be the only one to reply, but The variables @id and @record must be set prior to the call, as in: 14 loop readnext @id else exit end 16 read @record from CONF,KEY then 18