Arkadaşlar vb.net te textbox' ta yazan herhangi bir yazıyı txt dosyasına aktarmak istiyorum. Bunu nasıl yapabilirim?

Elimde boyle bir kod var ancak şoyle bir sorun oluyor.
Textbox1.text = Merhaba
txt = M
E
R
H
A
B
A

KOD: Kod:
Dim Yol As String = "c:\abc\oku.txt" If System.IO.File.Exists(Yol) = False Then Dim YazYap As System.IO.StreamWriter = System.IO.File.CreateText(Yol) Dim Item As Object For Each Item In Me.TextBox1.Text YazYap.WriteLine(Item & vbNewLine) Next YazYap.Flush() YazYap.Close() End If

__________________