Tutorial Vb.Net : Simpan & Baca Data File .Txt (Import & Save Txt File)

Tutorial Vb.Net : Cara menyimpan dan membaca file dari file txt dan menampilkannya di textbox vb net sekaligus mengimport file .txt ke TextBox vb.net di Sector Code !

Membuat dan Membaca Kembali File .Txt dan Menampilkan di TextBox

Tutorial Visual Basic Net Sebelumnya yaitu tentang Tutorial  CRUD (Create, Update, Delete) Vb.Net menggunakan database MySQL, namun kita juga bisa membaca dan menyimpan data tanpa menggunakan Database MysQL ataupun Database Access, yaitu dengan menggunakan File.Txt, ikuti tutorial Vb.net ini step by step

Langkah pertama Menyimpan Data Ke File Txt

Buatlah Form baru dengan nama FrmUtama.vb, masukkan field - field sehingga tampak seperti gambar berikut :

Tutorial Vb.Net : Simpan & Baca Data File .Txt (Import & Save Txt File)

Keterangan :
Label, TextBox, Button,MenuStrip dan DateTimePicker


Pada MenuStrip Isi Field seperti gambar berikut :

Tutorial Vb.Net : Simpan & Baca Data File .Txt (Import & Save Txt File)

Selanjutnya pada button Simpan klik 2x dan masukkan Code Berikut :
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim objStreamWriter As StreamWriter
        Dim tahun = Format(CDate(DateAndTime.Now), "yMMddhhss")
        Dim NamaFile As String = "Kwitansi-" & TextBox4.Text & "-Tgl-" & tahun
        objStreamWriter = New StreamWriter(My.Application.Info.DirectoryPath & "\DATA\" & NamaFile & ".txt")
        objStreamWriter.WriteLine(TextBox1.Text)
        objStreamWriter.WriteLine(TextBox2.Text)
        objStreamWriter.WriteLine(TextBox3.Text)
        objStreamWriter.WriteLine(DateTimePicker1.Value)
        objStreamWriter.WriteLine(TextBox4.Text)
        MsgBox("Data Tersiman !")
        objStreamWriter.Close()
    End Sub
Button Keluar
    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        Me.Close()
    End Sub
Menu Import kwitansi
    Private Sub ImportKwitansiToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ImportKwitansiToolStripMenuItem.Click
        Dim vimport As New OpenFileDialog
        vimport.Filter = "Text File(*.txt)| *.txt"
        vimport.InitialDirectory = My.Application.Info.DirectoryPath & "\DATA\"
        If vimport.ShowDialog <> Windows.Forms.DialogResult.OK Then Exit Sub
        Dim myfile As String = vimport.FileName
        Dim bacafile As New System.IO.StreamReader(myfile)
        TextBox1.Text = bacafile.ReadLine
        TextBox2.Text = bacafile.ReadLine
        TextBox3.Text = bacafile.ReadLine
        DateTimePicker1.Value = bacafile.ReadLine
        TextBox4.Text = bacafile.ReadLine
        bacafile.Close()
    End Sub
Kalau semuanya selesai, tinggal jalankan aplikasi anda, tekan F5 dan sukses, jangan lupa untuk bertanya jika ada yang bermasalah, jika masih ada yang bingung dengan tutorial diatas silahkan lihat video tutorial simpan dan baca file text berikut :


 terima kasih ;)

Feel free to code it up and send us a pull request.

Hi everyone, let's me know how much this lesson can help your work. Please Subscribe and Follow Our Social Media 'kodeajaib[dot]com' to get Latest tutorials and will be send to your email everyday for free!, Just hit a comment if you have confused. Nice to meet you and Happy coding :) all ^^



Follow by E-Mail


Name

ADO.NET,3,Ajax,6,Android,9,AngularJS,4,ASP.NET,4,Blogger Tutorials,7,Bootstrap,7,C++,1,Codeigniter,2,Cplusplus,6,Crystal Report,6,CSharp,25,Ebook Java,2,FlyExam,1,FSharp,3,Game Development,2,Java,35,JDBC,2,Laravel,89,Lumen,2,MariaDB,2,Ms Access,3,MySQL,31,ODBC,6,OleDB,1,PHP,14,PHP Framework,6,PHP MYSQLI,9,PHP OOP,5,Python,8,Python 3,4,SQL Server,4,SQLite,4,Uncategorized,5,Vb 6,2,Vb.Net,89,Video,48,Vue Js,4,WPF,2,Yii,3,
ltr
item
KODE AJAIB: Tutorial Vb.Net : Simpan & Baca Data File .Txt (Import & Save Txt File)
Tutorial Vb.Net : Simpan & Baca Data File .Txt (Import & Save Txt File)
Tutorial Vb.Net : Cara menyimpan dan membaca file dari file txt dan menampilkannya di textbox vb net sekaligus mengimport file .txt ke TextBox vb.net di Sector Code !
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinyn3ZcQsIQGaKlWyqOrgKM5NkeVkRaaOQc94hGCF2qenzNBHK1oHlZSvVY5UCYluWy0N8ltfYWJIhZ6AT4csb_8mrkYMNP6PZL3zFd_h60ZkI6HBrgTyR4-1YsxgAnamq_gyuk-dgU4E/s1600/simpan-baca-file-txt-vbnet.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinyn3ZcQsIQGaKlWyqOrgKM5NkeVkRaaOQc94hGCF2qenzNBHK1oHlZSvVY5UCYluWy0N8ltfYWJIhZ6AT4csb_8mrkYMNP6PZL3zFd_h60ZkI6HBrgTyR4-1YsxgAnamq_gyuk-dgU4E/s72-c/simpan-baca-file-txt-vbnet.png
KODE AJAIB
https://scqq.blogspot.com/2015/04/tutorial-vbnet-simpan-baca-data-file-txt.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2015/04/tutorial-vbnet-simpan-baca-data-file-txt.html
true
3214704946184383982
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy