Пример #1
0
        private void tbProc_CellDoubleClicked(object sender, CellEventArgs e)
        {
            FormClaimProc FormCP = new FormClaimProc(ClaimProcsToEdit[e.Row], null, FamCur, PlanList);

            FormCP.IsInClaim = true;
            //no need to worry about permissions here
            FormCP.ShowDialog();
            if (FormCP.DialogResult != DialogResult.OK)
            {
                return;
            }
            FillGrid();
        }
Пример #2
0
        private void gridMain_CellDoubleClick(object sender, OpenDental.UI.ODGridClickEventArgs e)
        {
            if (!SaveGridChanges())
            {
                return;
            }
            List <ClaimProcHist> histList = null;
            List <ClaimProcHist> loopList = null;
            FormClaimProc        FormCP   = new FormClaimProc(ClaimProcsToEdit[e.Row], null, FamCur, PatCur, PlanList, histList, ref loopList, PatPlanList, false, SubList);

            FormCP.IsInClaim = true;
            //no need to worry about permissions here
            FormCP.ShowDialog();
            if (FormCP.DialogResult != DialogResult.OK)
            {
                return;
            }
            FillGrid();
            FillTotals();
        }