private void btnShowError_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { if (selection.SelectedCount == 0) { MessageBox.Show("请先选择需要显示差错的记录"); } else { string strSYDID = null; for (int i = 0; i < selection.SelectedCount; ++i) { int RowIndex = selection.GetSelectedRowIndex(i); int RowHandle = gridView1.GetRowHandle(RowIndex); string strTemp = gridView1.GetRowCellDisplayText(RowHandle, colSYDID); strSYDID += "[CCDID] = \'" + strTemp + "\' Or "; } int index = strSYDID.LastIndexOf("'"); strSYDID = strSYDID.Substring(0, index + 1).Trim(); FrmProfitLossErrorNote FrmPLEN = new FrmProfitLossErrorNote(strSYDID); FrmPLEN.Show(); FrmPLEN.Activate(); } }
private void gridView1_DoubleClick(object sender, EventArgs e) { FormCollection fc = Application.OpenForms; GridView view = (GridView)sender; GridHitInfo hitInfo = view.CalcHitInfo(view.GridControl.PointToClient(Control.MousePosition)); if (hitInfo.HitTest == GridHitTest.RowCell) { if ((hitInfo.Column != null) && (hitInfo.Column == colCCDH)) { string strTemp = view.GetRowCellDisplayText(hitInfo.RowHandle, colCCDID); string strCCDID = "[CCDID] = \'" + strTemp + "\'"; if (fc["FrmProfitLossErrorNote"] != null) { fc["FrmProfitLossErrorNote"].Close(); } FrmProfitLossErrorNote FrmPLEN = new FrmProfitLossErrorNote(strCCDID); FrmPLEN.Show(); FrmPLEN.Activate(); } } }