create a text file (write and read onto it)
Please help me out.
Private Sub record()
Open "History.txt" For Append As #1
Write #1, vbNewLine & Date & " at " & Time & " - " & nom
Close #1
End Sub
Above are the codes I used to generate a .txt file. It's working but whenever I open the text file, it contains the text in between two apostrophy ("date time"). How can I create a text file that will not show apostrophy? The text file contains below:
"15-Jun-05 at 01:26:08 AM - Host - ok?ok?"
"
15-Jun-05 at 01:26:16 AM - Host - ok?"
i doesn't want that: ""
any idea?
Thanks a lot guys

