03-19-2010 08:11 AM
03-19-2010 08:17 AM
03-19-2010 09:10 AM
ITEuser wrote:
I tried to put in a Write Text item to write some line feeds when the triggering stops but had a problem with two things trying to write to the same file.
Were you doing this while the Write to Measurement File was actually running? There should be no problem appending to the file using the file I/O functions. However, you will not be able to use Write To Text File by itself since that will try to overwrite the file. You will need to open the file, set the file position to the end, write your linefeed, and then close the file. All of this, of course, after the Write to Measurement File has completed.