G
Guest
I'm attempting to create a tsv file (i.e. equivalent to what Excel produces
when you use the Text (tab delimited) type when saving. I'm trying this...
Dim sw As New System.IO.StreamWriter("c:\test.tsv")
sw.Write("sdfdsf" + vbTab + "dsfsd")
sw.Close()
....but the output of that is gibberish. Anyone how to do this?
when you use the Text (tab delimited) type when saving. I'm trying this...
Dim sw As New System.IO.StreamWriter("c:\test.tsv")
sw.Write("sdfdsf" + vbTab + "dsfsd")
sw.Close()
....but the output of that is gibberish. Anyone how to do this?