RE: [U2] [UD] Active select list in BASIC

2006-01-18 Thread Bill Haskett
, 2006 9:37 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list in BASIC Which ones have you come across so far Bill? From: Bill Haskett [EMAIL PROTECTED] Reply-To: u2-users@listserver.u2ug.org To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active

SV: [U2] [UD] Active select list in BASIC

2006-01-17 Thread Claus Derlien
which is shown on the prompt as active best regards from denmark Claus Derlien -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] vegne af Bill Haskett Sendt: 13. januar 2006 13:48 Til: u2-users@listserver.u2ug.org Emne: [U2] [UD] Active select list in BASIC I

RE: [U2] [UD] Active select list in BASIC

2006-01-16 Thread Marilyn Hilb
PROTECTED] On Behalf Of Bill Haskett Sent: Friday, January 13, 2006 9:30 PM To: u2-users@listserver.u2ug.org Subject:RE: [U2] [UD] Active select list in BASIC David Ed: Thank you. The SELECT TO BPLIST (I couldn't get the SELECT TO 1 then the READNEXT FROM 1 to compile) works fine

RE: [U2] [UD] Active select list in BASIC

2006-01-16 Thread David Wolverton
you think that it would be? (You're scaring me!) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marilyn Hilb Sent: Monday, January 16, 2006 9:27 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list in BASIC Just an added note

RE: [U2] [UD] Active select list in BASIC

2006-01-16 Thread u2
: RE: [U2] [UD] Active select list in BASIC Just an added note. It there is any possibility that multiple users could be running this at the same time.. You may want to make sure BPLIST is unique, I use port# to assure it is Unique and user ID to identify it. ~Marilyn -Original

RE: [U2] [UD] Active select list in BASIC

2006-01-16 Thread Marilyn Hilb
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Wolverton Sent: Monday, January 16, 2006 9:59 AM To: u2-users@listserver.u2ug.org Subject:RE: [U2] [UD] Active select list in BASIC Select lists are always unique in your workspace

RE: [U2] [UD] Active select list in BASIC

2006-01-16 Thread Kevin King
-Original Message- From: David Wolverton Select lists are always unique in your workspace, aren't they? Active lists, yes. Saved lists, no. Saved lists are no different than any other record in a file somewhere. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe

RE: [U2] [UD] Active select list in BASIC

2006-01-16 Thread David Wolverton
Ah -- this thread was not about saved lists... No wonder I was confused!! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin King Sent: Monday, January 16, 2006 10:35 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list

RE: [U2] [UD] Active select list in BASIC

2006-01-16 Thread Marilyn Hilb
Subject:RE: [U2] [UD] Active select list in BASIC In this case, BPLIST is a variable name--we aren't saving the list to SAVEDLISTS so there's no conflict. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marilyn Hilb Sent: Monday, January 16

Re: [U2] [UD] Active select list in BASIC

2006-01-16 Thread aegerton
From: David Wolverton [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, January 16, 2006 10:58 AM Subject: RE: [U2] [UD] Active select list in BASIC Select lists are always unique in your workspace, aren't they? -- t\That is, even if 5 users are accessing a select list named

RE: [U2] [UD] Active select list in BASIC

2006-01-15 Thread DAVID WOLVERTON
. DW -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett Sent: Friday, January 13, 2006 9:30 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list in BASIC David Ed: Thank you. The SELECT TO BPLIST (I couldn't get

RE: [U2] [UD] Active select list in BASIC

2006-01-14 Thread Allen E. Elwood
: [U2] [UD] Active select list in BASIC Bill, This is the way a Select list works. The IDs that have already been used via the READNEXT will be gone. If you'd like you can select to one of the non-active list like 1. PERFORM SELECT MYFILE TO 1 ... LOOP READNEXT ID FROM 1 ELSE EXIT ... REPEAT

[U2] [UD] Active select list in BASIC

2006-01-13 Thread Bill Haskett
I have a simple program that looks like: EXECUTE \SSELECT BP\ HEADING THIS IS A TEST 'CLT' LOOP READNEXT ID ELSE EXIT CRT ID REPEAT CRT CRT ...Exiting program and clearing select list... END When I run it in Pick mode I get the message Enter New line to continue... at the bottom of the 1st

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread Kevin King
. Of course, then you have to handle your own page control, but that should be no big deal. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett Sent: Friday, January 13, 2006 5:48 AM To: u2-users@listserver.u2ug.org Subject: [U2] [UD] Active select list

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread David A. Green
] On Behalf Of Bill Haskett Sent: Friday, January 13, 2006 5:48 AM To: u2-users@listserver.u2ug.org Subject: [U2] [UD] Active select list in BASIC I have a simple program that looks like: EXECUTE \SSELECT BP\ HEADING THIS IS A TEST 'CLT' LOOP READNEXT ID ELSE EXIT CRT ID REPEAT CRT CRT ...Exiting

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread David A. Green
-users@listserver.u2ug.org Subject: [U2] [UD] Active select list in BASIC I have a simple program that looks like: EXECUTE \SSELECT BP\ HEADING THIS IS A TEST 'CLT' LOOP READNEXT ID ELSE EXIT CRT ID REPEAT CRT CRT ...Exiting program and clearing select list... END When I run it in Pick mode I

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread u2
@listserver.u2ug.org Subject: [U2] [UD] Active select list in BASIC I have a simple program that looks like: EXECUTE \SSELECT BP\ HEADING THIS IS A TEST 'CLT' LOOP READNEXT ID ELSE EXIT CRT ID REPEAT CRT CRT ...Exiting program and clearing select list... END When I run it in Pick mode I get

Re: [U2] [UD] Active select list in BASIC

2006-01-13 Thread Martin Phillips
Why is this not what you expected? You have asked it to print a paginated list of record ids and you have quit out with an active select list. Sounds right to me. Typing Q isn't going to exit the loop and hit your message. It terminates the program entirely. If you want to catch the Q yourself,

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread Bill Haskett
. :-) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David A. Green Sent: Friday, January 13, 2006 6:00 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list in BASIC Bill, You can turn this feature off by using an @ print

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread David A. Green
Consulting -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett Sent: Friday, January 13, 2006 2:12 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list in BASIC David, Kevin and Ed: Thanks for the tip. My question

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread u2
-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list in BASIC David, Kevin and Ed: Thanks for the tip. My question was the select list remaining active, rather than the page message or the program aborting. Although the program aborting sucks, it has always occurred

RE: [U2] [UD] Active select list in BASIC

2006-01-13 Thread Bill Haskett
sure save me a lot of time. :-) Thanks again, Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, January 13, 2006 3:32 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Active select list in BASIC