Untitled
unknown
plain_text
3 years ago
292 B
7
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 SubEditor is loading...