Untitled
unknown
plain_text
2 years ago
292 B
5
Indexable
Private Sub Delete_data() Dim dt As New DataTable Dim da As New OleDbDataAdapter dt.Clear() da = New OleDbDataAdapter("delete * from login where id =" & DataGridView1.CurrentRow.Cells(0).Value, con) da.Fill(dt) Load_Data() End Sub
Editor is loading...