SurvivorTiger
Programmer
Hi everyone,
This is my code:
Dim fso As FileSystemObject
Dim tStream As TextStream
Set fso = New FileSystemObject
Set tStream = fso.CreateTextFile("C:\whatever.txt", True)
With tStream
.WriteLine MonthView1.Day
.WriteLine txtHours.Text
.WriteLine txtWhatever.Text
.WriteBlankLines 1
.Close
End With
What I want to do is that the next time this code gets executed, i don't want it to overwrite the new info on the same lines, i want it to write those after the linke break...Any ideas?
AIM: survivertiger & Ye This Is Me
This is my code:
Dim fso As FileSystemObject
Dim tStream As TextStream
Set fso = New FileSystemObject
Set tStream = fso.CreateTextFile("C:\whatever.txt", True)
With tStream
.WriteLine MonthView1.Day
.WriteLine txtHours.Text
.WriteLine txtWhatever.Text
.WriteBlankLines 1
.Close
End With
What I want to do is that the next time this code gets executed, i don't want it to overwrite the new info on the same lines, i want it to write those after the linke break...Any ideas?
AIM: survivertiger & Ye This Is Me