Exemplo n.º 1
0
        private void butImport_Click(object sender, EventArgs e)
        {
            //Opens the Code System Importer tool so the user can download the CDCREC codes.
            FormCodeSystemsImport FormCSI = new FormCodeSystemsImport();

            FormCSI.ShowDialog();
            FillRaceData();
            FillGrid(gridRace, _listPatRaces);
            FillGrid(gridEthnicity, _listPatEthnicities);
            FillTree(treeRaces, _listAllRaces);
            FillTree(treeEthnicities, _listAllEthnicities);
        }
Exemplo n.º 2
0
 private void FormRxNorms_Shown(object sender, EventArgs e)
 {
     if (RxNorms.IsRxNormTableSmall())
     {
         if (MsgBox.Show(this, true, "Incomplete RxNorm list detected.  "
                         + "If you intend to use RxNorm codes, you can download them now by clicking OK.  "
                         + "The RxNorm codes will add about 10 MB to your database size.  Download RxNorm codes?"))
         {
             FormCodeSystemsImport form = new FormCodeSystemsImport(CodeSystemName.RXNORM);
             form.ShowDialog();
         }
     }
 }
Exemplo n.º 3
0
		/*private void butAdd_Click(object sender,EventArgs e) {
			//TODO: Either change to adding a snomed code instead of an ICD9 or don't allow users to add SNOMED codes other than importing.
			changed=true;
			Snomed snomed=new Snomed();
			FormSnomedEdit FormI=new FormSnomedEdit(snomed);
			FormI.IsNew=true;
			FormI.ShowDialog();
			FillGrid();
		}*/

		private void butCodeImport_Click(object sender,EventArgs e) {
			FormCodeSystemsImport FormCSI=new FormCodeSystemsImport();
			FormCSI.ShowDialog();
		}
Exemplo n.º 4
0
		private void butCodeImport_Click(object sender,EventArgs e) {
			FormCodeSystemsImport FormCSI=new FormCodeSystemsImport();
			FormCSI.ShowDialog();
		}