another strangely behaving function (in Mathematica 5.2):
tex1 = OpenWrite["C:\\test1.txt"];
tex2 = OpenWrite["C:\\test2.txt"];
Write[{tex1, tex2}, "anything"]
Close[tex1];
Close[tex2];
ClearAll[tex1, tex2];
Q1: Why is test2.txt empty?
Q2: Why does it work correctly with WriteString instead of Write?
Thanks for any answer
Istvan Zachar
Any suggestions?
Istvan