08-19-2010 01:57 PM - edited 08-19-2010 01:58 PM
Anyone else has the "End of File Ecountered" error on the attached VI.
I don't really know what I'm doing wrong here.
Thanks
Kas
Solved! Go to Solution.
08-19-2010 02:12 PM
You use the following string formatter:
%-2147483648d) %s %6s %9s: >>>%s<<<
the first one is the culprit (%-2147483648d), this instructs labview to write down a number (%......d) with a negative number of digits, which is of course not possible.
if I change the format to %4d I get the following output 1) 2010/08/19-19:41:55.109 LPT1 Command: >>>test in<<<.
This is still a bug inside LabVIEW, NI should perform a sanity check on the format and output an apporpriate error.
Ton
08-19-2010 02:29 PM
Nice catch.
Thanks
Kas