çalıştıramadım olmadı
Try
Dim fs As System.IO.FileStream = New System.IO.FileStream("c:\test.doc", IO.FileMode.Append, IO.FileAccess.Write)
Dim yazdırma As System.IO.StreamWriter = New System.IO.StreamWriter(fs)
yazdırma.Write(Chr(13) + TextBox1.Text)
''chr(13) komutu bir alt satıra geciriyor.
yazdırma.Close()
fs.Close()
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
yazdım bu şekilde C içine test adında word dosyasıda açtım
