Beispiel #1
0
        private void butImportPatient_Click(object sender, EventArgs e)
        {
            FrmImportCPN frm = new FrmImportCPN(_forecast, _artSites, GetSelectedSiteId());

            if (frm.ShowDialog() == DialogResult.OK)
            {
                BindArtSites();
                SetStatusOfCatRadioButton();
                //uncommented on May 12 2014
                OnNextButtonStatusChanged(true);
                _isedited = true;
            }
        }
Beispiel #2
0
 private void butImportPatient_Click(object sender, EventArgs e)
 {
     FrmImportCPN frm = new FrmImportCPN(_forecast, _artSites, GetSelectedSiteId());
     if (frm.ShowDialog() == DialogResult.OK)
     {
         BindArtSites();
         SetStatusOfCatRadioButton();
         //uncommented on May 12 2014
         OnNextButtonStatusChanged(true);
         _isedited = true;
     }
 }