Пример #1
0
 /// <summary>
 /// 헬퍼를 출력한다.
 /// </summary>
 private void ShowHelper()
 {
     try
     {
         Erp.Event.FAHA.FAHAH01 f = new Erp.Event.FAHA.FAHAH01(this.txtNo.Text.Trim(), "GetEventInfo");
         f.Owner = this;
         f.ShowDialog();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Пример #2
0
 /// <summary>
 /// 연회번호 헬퍼를 눌렀을 경우
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
 private void picSearchEventNo_Click(object sender, EventArgs e)
 {
     try
     {
         txtEventNameNo.Focus();
         Erp.Event.FAHA.FAHAH01 h = new Erp.Event.FAHA.FAHAH01(txtEventNameNo.Text.ToString().Trim(), "GetEventNo");
         h.Owner = this;
         h.ShowDialog();
     }
     catch (Exception ex)
     {
         Basic.ShowMessage(3, ex.Message);
     }
 }