private void btnUpdate_Click(object sender, EventArgs e) { if (ListView1.Items.Count == 0) { Interaction.MsgBox("Please select record to update", MsgBoxStyle.Exclamation, "Update"); return; } try { if (string.IsNullOrEmpty(ListView1.FocusedItem.Text)) { } else { SQLConn.adding = false; SQLConn.updating = true; catgoryID = Convert.ToInt32(ListView1.FocusedItem.Text); frmAddEditCategory aeC = new frmAddEditCategory(catgoryID); aeC.ShowDialog(); } } catch { Interaction.MsgBox("Please select record to update", MsgBoxStyle.Exclamation, "Update"); return; } }
private void btnNew_Click(object sender, EventArgs e) { SQLConn.adding = true; SQLConn.updating = false; int init = 0; frmAddEditCategory aeC = new frmAddEditCategory(init); aeC.ShowDialog(); }