Thanks for the quick reply. In one case I build a text file in .001 increments, sometimes as long as 100,000 lines, or up to 100. Right now I write .01 to a text file and then in a loop, reread that file and append .002 to it, and so on, until I have say .001 to 100 written to the final file, and then exit the loop. I just wanted to avoid all the writing to files. Are you saying the shift register will simply store all these values and I can write to a file in the last loop so each line of the text file represents each value from each loop? In another case, I simply have one value that is periodically updated while the program is running. To keep track of that information I store it in a text file. I would rather store that info without a file so the program does not have to rely on writing a file, and run into problems with where the file is written and permissions to that file. Thanks.
Jeff