private void btnCancelChkList_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { frmCheckList frm = new frmCheckList(); if (dtChk != null) { frm.dtCancel = dtChk; } frm.Execute(m_iFlatId, "Cancel", m_iCCId, m_sFlatNo, "B"); dtChk = frm.dtCancel; m_bChkSend = frm.bFinal; }
private void btnFlatCheckList_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { if (txtFlatName.Text != "") { frmCheckList frmCheckList = new frmCheckList(); if (dtFinal != null) { if (dtFinal.Rows.Count > 0) { frmCheckList.dtFinal = dtFinal; } } frmCheckList.Execute(m_iFlatId, "Final", m_iCCID, m_sFlatName, "B"); dtFinal = frmCheckList.dtFinal; bChkSend = frmCheckList.bFinal; } }