Can you post the relevant code?
Dim MyTextWriter As TextWriter
Dim temp As String =(receiptdir2 & ".csv")
MyTextWriter.Initialize(File.OpenOutput(receiptmain, temp,True))
Dim temp2 As String = (CRLF & DateTime.Date(DateTime.Now) & "," & Main.csvfile & "," & Main.csvamount)
MyTextWriter.Write (temp2)
MyTextWriter.Flush
MyTextWriter.Close
To open then table im using the scrollview example. The above code
puts the text in the file fine if I open it in a different reader
but not with the code from the example unless I save it in the
other reader first.
Ive also used .writeline with the same results.