Private Sub BindingNavigatorDeleteItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BindingNavigatorDeleteItem.Click
If MessageBox.Show("Are you sure?", "", MessageBoxButtons.YesNo) =
Windows.Forms.DialogResult.Yes Then
ItemBindingSource.RemoveCurrent()
End If
End Sub
'this code will delete with yes/no click by user,how to do it better?
please help,your kind help much more appreciated.
If MessageBox.Show("Are you sure?", "", MessageBoxButtons.YesNo) =
Windows.Forms.DialogResult.Yes Then
ItemBindingSource.RemoveCurrent()
End If
End Sub
'this code will delete with yes/no click by user,how to do it better?
please help,your kind help much more appreciated.