Hi,

I have this code in my bindingNavDelete_Click Event. It clears the textboxes but does not delete the item after clicking Save and refresh it's still there.

if (Validate() && (this.tblOPRBindingSource != null))

{

if (MessageBox.Show("Delete?", "Confirm Delete", MessageBoxButtons.YesNo,

MessageBoxIcon.Question) == DialogResult.Yes)

{

this.tblOPRBindingSource.RemoveCurrent();

this.tblOPRBindingSource.EndEdit();

}

}