Exemple #1
0
 /// <summary>
 ///
 /// </summary>
 private void InitializaTime()
 {
     try
     {
         m_iRemindtime = ComponentCommand.GetRemindTime();
     }
     catch (Exception)
     {
         m_iRemindtime = 1;
     }
 }
Exemple #2
0
 private void MedicalRecordCfg_Load(object sender, EventArgs e)
 {
     try
     {
         this.txtDelay.Text      = ComponentCommand.GetDealyMaxTime().ToString();
         this.txtDelayTimes.Text = ComponentCommand.GetDealyTimes().ToString();
         this.txtReadAmount.Text = ComponentCommand.GetApplyLimit().ToString();
         this.txtReadTime.Text   = ComponentCommand.GetReadTime().ToString();
         this.txtRemind.Text     = ComponentCommand.GetRemindTime().ToString();
     }
     catch (Exception)
     {
         throw;
     }
 }