Hi Big Jack!
That's a good question. I have a few suggestions.
I am assuimg that you want to somehow automate the file retrieval process. By that, you want a LabVIEW program that will retrieve the file for you (otherwise, a simple answer to your question would be to simple "copy the text file to a floppy disk"). Here are some ideas:
1. If both computers are in the same LAN (I have never used a WAN before, sorry, but it might work in a WAN, too), then you could write a VI on the retriever machine that uses the COPY function to copy the file directly from the remote PC. But you'll need to specify the full file path (in "named pipes" format) like this:
\\machine_name\C\folder1\filename.txt
2. Another option would be to use Data
sockets. If you run the Datasocket Server on the remote machine, its possible to read remote text files. For info, see:
http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/0caee043d3e294a4862567240063bb3f?OpenDocument
You can also use Datasockets to retrieve text files from HTTP and FTP servers. But then the machine where the text file is located must be running an FTP or HTTP server. For info, see:
http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/f3cc5f7e60a75cb2862567e700696abf?OpenDocument
3. Another option would be to write some code on the "source" machine that would copy the file to some other location to make it available for the "retriever" machine. For example, you could write a VI that periodically copies the text file to a specific location like an FTP Server. Datasockets can also be used to WRITE text files to FTP servers.
http://www.medicollector.com