private void butAddLab_Click(object sender, EventArgs e)
        {
            FormCDSILabResult FormCLR = new FormCDSILabResult();

            FormCLR.ShowDialog();
            if (FormCLR.DialogResult != DialogResult.OK)
            {
                return;
            }
            EhrTriggerCur.LabLoincList += " " + FormCLR.ResultCDSITriggerText + " ";
            FillGrid();
        }
Exemple #2
0
		private void butAddLab_Click(object sender,EventArgs e) {
			FormCDSILabResult FormCLR=new FormCDSILabResult();
			FormCLR.ShowDialog();
			if(FormCLR.DialogResult!=DialogResult.OK) {
				return;
			}
			EhrTriggerCur.LabLoincList+=" "+FormCLR.ResultCDSITriggerText+" ";
			FillGrid();
		}