- [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
Hướng dẫn Thêm Xoá Sửa trực tiếp trên Gridview của Devexpress sử dụng DataAdapter cập nhật xuống database
Hôm nay, mình xin hướng dẫn, cách thêm, xoá, sửa trực tiếp trên gridview của Devexpress, đồng thời tự động cập nhật dữ liệu xuống database.
Ứng dụng mình demo, sử dụng DataAdapter để tự động cập nhật dữ liệu dựa vào dataset trên gridview.
Khi dữ liệu trên Gridview của Devexpress thay đổi, thì dataset cũng thay đổi theo.
Chúng ta, sẽ cập nhật dataset mới cập nhật dữ liệu đó xuống database.
Lưu ý: DataApdapter tự động cập nhật xuống cơ sở dữ liệu, Visual basic chỉ hỗ trợ một table, không hỗ trợ nhiều bảng table cùng 1 lúc (join database)
Giao diện chương trình:
Chương trình mình sẽ tạo, thêm button thêm và xoá vào gridview, nếu các bạn nào chưa biết cách thực hiện, có thể tham khảo bài viết:
Thêm button vào Gridview devexpress Của anh Tona: https://laptrinhvb.net/bai-viet/devexpress/Them-Button-vao-GridControl-DevExpress/66f02903edd2a656.html
Source chương trình:
Imports System.ComponentModel
Imports System.Text
Imports System.Data.SqlClient
Imports DevExpress.XtraGrid.Views.Base
Imports DevExpress.XtraGrid
Imports DevExpress.XtraGrid.Views.Grid
Partial Public Class Form1
Inherits DevExpress.XtraEditors.XtraForm
Shared Sub New()
DevExpress.UserSkins.BonusSkins.Register()
DevExpress.Skins.SkinManager.EnableFormSkins()
End Sub
Public Sub New()
InitializeComponent()
End Sub
Dim con As New SqlConnection
Public Sub Taoketnoi()
Dim str As String = "Data Source=.;Initial Catalog=sinhvien;Integrated Security=True"
con.ConnectionString = str
con.Open()
End Sub
Dim ds As DataSet
Dim da As SqlDataAdapter
Public Function LayDulieu() As DataSet
Taoketnoi()
da = New SqlDataAdapter("Select * from tbl_sinhvien", con)
Dim commandBuilder As New SqlCommandBuilder(da)
ds = New DataSet()
da.Fill(ds, "tbl_sinhvien")
Return ds
End Function
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
GridControl1.DataSource = LayDulieu.Tables("tbl_sinhvien")
GridControl1.ForceInitialize()
End Sub
Private Sub RepositoryItemButtonEdit1_Click(sender As Object, e As EventArgs) Handles RepositoryItemButtonEdit1.Click
GridView1.DeleteSelectedRows()
da.Update(ds.Tables("tbl_sinhvien"))
ds.AcceptChanges()
End Sub
Private Sub GridControl1_ProcessGridKey(sender As Object, e As KeyEventArgs) Handles GridControl1.ProcessGridKey
Dim grid = TryCast(sender, GridControl)
Dim view = TryCast(grid.FocusedView, GridView)
If e.KeyData = Keys.Delete Then
view.DeleteSelectedRows()
e.Handled = True
da.Update(ds.Tables("tbl_sinhvien"))
ds.AcceptChanges()
End If
End Sub
Private Sub RepositoryItemButtonEdit2_Click(sender As Object, e As EventArgs) Handles RepositoryItemButtonEdit2.Click
GridView1.AddNewRow()
GridView1.OptionsNavigation.AutoFocusNewRow = True
End Sub
Private Sub GridView1_RowUpdated(sender As Object, e As RowObjectEventArgs) Handles GridView1.RowUpdated
If ds.HasChanges Then
da.Update(ds.Tables("tbl_sinhvien"))
ds.AcceptChanges()
End If
End Sub
End Class
VIDEO DEMO ỨNG DỤNG
CHÚC CÁC BẠN THÀNH CÔNG!