- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[VB.NET] Kiểm tra hai file text có trùng dữ liệu hay không (Check Difference two file)
Hôm nay, mình xin hướng dẫn các bạn cách so sánh dữ liệu hai file text có giống nội dung với nhau hay không bằng ngôn ngữ lập trình VB.NET.
Tức là, chương trình sẽ kiểm tra dữ liệu 2 file text.
Chương trình mình viết hỗ trợ realtime, nghĩa là khi một trong 2 file dữ liệu thay đổi, thì chương trình của chúng ta sẽ tự động đi kiểm tra.
Nếu 2 file dữ liệu khác nhau, thì chương trình sẽ xuất thông báo cho chúng ta biết dữ liệu bị sai, không trùng nhau.
Chương trình demo:
Source code bằng VB.NET
Imports System.IO
Imports System.Media
Imports System.Threading
Public Class Form1
Private Function FileCompare(ByVal file1 As String, ByVal file2 As String) As Boolean
Dim file1byte As Integer
Dim file2byte As Integer
Dim fs1 As FileStream
Dim fs2 As FileStream
If (file1 = file2) Then
Return True
End If
Thread.Sleep(200)
fs1 = New FileStream(file1, FileMode.Open)
fs2 = New FileStream(file2, FileMode.Open)
If (fs1.Length <> fs2.Length) Then
fs1.Close()
fs2.Close()
Return False
End If
Do
file1byte = fs1.ReadByte()
file2byte = fs2.ReadByte()
Loop While ((file1byte = file2byte) And (file1byte <> -1))
fs1.Close()
fs2.Close()
Return ((file1byte - file2byte) = 0)
End Function
Private Sub btnStart_Click(sender As Object, e As EventArgs) Handles btnStart.Click
btnStart.Enabled = False
btnStop.Enabled = True
fsw.IncludeSubdirectories = True
fsw.NotifyFilter = NotifyFilters.FileName Or NotifyFilters.Size
AddHandler fsw.Changed, AddressOf fsw_changed
fsw.EnableRaisingEvents = True
End Sub
Private Sub fsw_changed(ByVal sender As Object, ByVal e As FileSystemEventArgs)
'setLabelTxt("Monitoring: " & e.FullPath, Label2)
Dim result As String
Dim thoigian As String
thoigian = System.DateTime.Now.ToString("dd/MM/yyyy HH:mm:ss")
If (FileCompare(txtFile1.Text, txtFile2.Text)) Then
result = thoigian + " - Tình trạng: OK" + vbNewLine + rtfResult.Text
setLabelTxt(result, rtfResult)
Else
result = thoigian + " - Tình trạng: FAIL" + vbNewLine + rtfResult.Text
setLabelTxt(result, rtfResult)
SystemSounds.Beep.Play()
End If
End Sub
Public Shared Sub setLabelTxt(ByVal text As String, ByVal lbl As RichTextBox)
If lbl.InvokeRequired Then
lbl.Invoke(New setLabelTxtInvoker(AddressOf setLabelTxt), text, lbl)
Else
lbl.Text = text
End If
End Sub
Public Delegate Sub setLabelTxtInvoker(ByVal text As String, ByVal lbl As RichTextBox)
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
If opendialogResult.ShowDialog = DialogResult.OK Then
Dim path As String = opendialogResult.FileName
txtFile1.Text = path
End If
End Sub
Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
If opendialogResult.ShowDialog = DialogResult.OK Then
Dim path As String = opendialogResult.FileName
txtFile2.Text = path
End If
End Sub
Private Sub btnStop_Click(sender As Object, e As EventArgs) Handles btnStop.Click
btnStart.Enabled = True
btnStop.Enabled = False
fsw.EnableRaisingEvents = False
End Sub
End Class