Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with appending text file -VB 2005

Status
Not open for further replies.
May 22, 2003
42
US
Hi

I'm trying to append a text file with the following code:

Dim tw As System.IO.TextWriter
tw = System.IO.File.CreateText("D:\host.txt")
tw.WriteLine(t_HostName.text)
tw.Flush()
tw.Close()

This is what I get in the text file:

frh001wa2555655
f
fr
frh
frh0
frh00
frh001
frh001w
frh001wa
frh001wa2
frh001wa26
frh001wa261
frh001wa2613
frh001wa26135
frh001wa261351
frh001wa2613519

Thanks

Tony
 
Exscuse me this is the code:

Dim tw As System.IO.TextWriter
tw = System.IO.File.AppendText("D:\host.txt")
tw.WriteLine(t_HostName.text)
tw.Flush()
tw.Close()
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top