private void tsmAdd_Click(object sender, EventArgs e) { PatientEdit openDialog = new PatientEdit(0, ""); //Butcher_EnterregisterDetail openDialog = new Butcher_EnterregisterDetail(0, 0, ""); openDialog.ShowDialog(); if (openDialog.DialogResult == DialogResult.OK) { LoadBucterList(); } }
private void tsmUpdate_Click(object sender, EventArgs e) { if (ugGrid.Rows.Count == 0) { return; } if (ugGrid.ActiveRow.IsFilterRow) { return; } if (this.ugGrid.ActiveRow.Cells["ID"].Value == DBNull.Value) { return; } PatientEdit openDialog = new PatientEdit(1, ugGrid.ActiveRow.Cells["ID"].Value.ToString()); openDialog.ShowDialog(); if (openDialog.DialogResult == DialogResult.OK) { LoadBucterList(); } }