hello guys
I need help Please.. What I want is that when i select the data from the listview1 it will also delete the corresponding data in the database im using mysql database...these is my code
Dim Button = MessageBox.Show _
("Are you sure you want to delete this Data?", _
"Message", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1)
If Button = Windows.Forms.DialogResult.Yes Then
DataGridView1.Rows.Remove(DataGridView1.CurrentRow)
da.Update(ds, "walkindata")
If Not ListView1.SelectedItems.Count = 0 Then
ListView1.Items.Remove(ListView1.SelectedItems.Item(0))
MsgBox("customer removed in the list.", MsgBoxStyle.Critical)
Else
MsgBox("No Customer Selected.", MsgBoxStyle.Critical)
End If
Else
MsgBox("delete is cancel", MsgBoxStyle.Information)
End If
so far that is my code..it work but in order to delete the data from database i use the datagridview does not what i want , what I want is that when i select the item in the listview the corresponding data in the listview it will also delete in database... that code i post is that u need to select the data in listview1 and also select the data from the datagridview in order to delete the data in database..