![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
After running a PICK BASIC program. How do I display or capture the results of an "active select list #0" It says there are 700 records in it for instance, now I would like to look and them and do a terminal capture of the text to save into a regular (windows) file. Thanks again, this group is very helpful. |
#3
| |||
| |||
|
|
Try this: DONE = 0 LOOP READNEXT ID ELSE DONE = 1 UNTIL DONE PRINT @(col,row):ID LOOP That will just print out the ID's contained in your active select list. READNEXT simply reads the next ID from an active select list. If they are file ID's, you may want to READ RECORD FROM FILEPOINTER,ID ELSE RECORD = "", then print the various elements that you need from that record. Dave "GEEK^&" <darrellulm (AT) yahoo (DOT) com> wrote in message news:1126902129.660732.263120 (AT) g49g2000cwa (DOT) googlegroups.com... After running a PICK BASIC program. How do I display or capture the results of an "active select list #0" It says there are 700 records in it for instance, now I would like to look and them and do a terminal capture of the text to save into a regular (windows) file. Thanks again, this group is very helpful. |
#4
| |||
| |||
|
|
Sorry - instead of the second LOOP, it should say REPEAT in my previous post. (I do Visual Basic too....) Dave "Dave Mitchell" <mitch500 (AT) sympatico (DOT) ca> wrote in message news:x2GWe.3937$6Z1.982456 (AT) news20 (DOT) bellglobal.com... Try this: DONE = 0 LOOP READNEXT ID ELSE DONE = 1 UNTIL DONE PRINT @(col,row):ID LOOP That will just print out the ID's contained in your active select list. READNEXT simply reads the next ID from an active select list. If they are file ID's, you may want to READ RECORD FROM FILEPOINTER,ID ELSE RECORD = "", then print the various elements that you need from that record. Dave "GEEK^&" <darrellulm (AT) yahoo (DOT) com> wrote in message news:1126902129.660732.263120 (AT) g49g2000cwa (DOT) googlegroups.com... After running a PICK BASIC program. How do I display or capture the results of an "active select list #0" It says there are 700 records in it for instance, now I would like to look and them and do a terminal capture of the text to save into a regular (windows) file. Thanks again, this group is very helpful. |
#5
| |||
| |||
|
#6
| |||
| |||
|
|
After running a PICK BASIC program. How do I display or capture the results of an "active select list #0" It says there are 700 records in it for instance, now I would like to look and them and do a terminal capture of the text to save into a regular (windows) file. Thanks again, this group is very helpful. |
#7
| |||
| |||
|
|
After running a PICK BASIC program. How do I display or capture the results of an "active select list #0" It says there are 700 records in it for instance, now I would like to look and them and do a terminal capture of the text to save into a regular (windows) file. Thanks again, this group is very helpful. |
#8
| |||
| |||
|
|
Thanks everyone for helping. I read the data out last night! I am working in a test account just to learn and then will make Q-pointers to the data so there is less chance of messing anything up. Pick is strange but powerful I am finding. Thank you for all your help! GEEK GEEK^& wrote: After running a PICK BASIC program. How do I display or capture the results of an "active select list #0" It says there are 700 records in it for instance, now I would like to look and them and do a terminal capture of the text to save into a regular (windows) file. Thanks again, this group is very helpful. |
![]() |
| Thread Tools | |
| Display Modes | |
| |