Txt dosyasından veri okutma ve yazma. Cok basit 
Okutma ;
Kod:
Dim oku As String = My.Computer.FileSystem.ReadAllText("C

rnek.txt") Label1.Text = oku
C
rnek.txt 'deki metini Label1 'e aktarma.
Yazma ;
Kod:
Try My.Computer.FileSystem.DeleteFile("C

rnek.txt") Dim fs As System.IO.FileStream = New System.IO.FileStream("C

rnek.txt", IO.FileMode.Append, IO.FileAccess.Write) Dim yazdirma As System.IO.StreamWriter = New System.IO.StreamWriter(fs) yazdirma.Write(TextBox1.Text) yazdirma.Close() fs.Close() Catch ex As Exception End Try
TextBox1 'deki metni C
rnek.txt 'ye aktarma.
Bu kadar. Umarım yardımcı olmuşumdur.
__________________