private void GRD_SLIP_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex < 0) { return; } string DocId = GRD_SLIP.Rows[e.RowIndex].Cells["DocId"].Value.ToString().Replace(".", ""); detailsSlip = new DetailSlipInfo(); detailsSlip.researchDocIdList += new DetailSlipInfo.researchDocIdListDelegate(researchDocList); detailsSlip.ViewVoid = true; detailsSlip.DocId = DocId; detailsSlip.BTN_REPRINT.Visible = true; detailsSlip.ShowDialog(); }