StreamWriter sw = new StreamWriter(@"c:/mcad/audit.txt");
sw.WriteLine("col1"+Chr(9)+"col2"+Chr(10));
sw.WriteLine("col1"+Chr(9)+"col2"+Chr(10));
sw.Close();
but this gives error on compile due to Chr(9). I am using System.IO.
Any advice appreciated. Thankswriting Chr(9) to text file
I'm trying to write Chr(9) to text file:
alobiucPosted Dec 9, 2004, 7:31 AM
robin 0Posted Dec 9, 2004, 1:57 AM
bilnaadPosted Dec 8, 2004, 5:44 PM