Esempio n. 1
0
 /// <summary>
 /// 헬퍼를 출력한다.
 /// </summary>
 private void ShowHelper()
 {
     try
     {
         Erp.Reservation.CAHA.CAHAH04 f = new Erp.Reservation.CAHA.CAHAH04(this.txtLotno.Text, "GetLotnoInfomation");
         f.Owner = this;
         f.ShowDialog();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 2
0
 /// <summary>
 /// 헬퍼를 출력한다.
 /// </summary>
 private DialogResult ShowHelper()
 {
     try
     {
         Erp.Reservation.CAHA.CAHAH04 f = new Erp.Reservation.CAHA.CAHAH04(this.txtLotno.Text, "GetLotnoInfomation");
         f.Owner = this;
         DialogResult dr = f.ShowDialog();
         return(dr);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 3
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 picLotCnt_Click(object sender, EventArgs e)
 {
     try
     {
         CAHA.CAHAH04 h = new Erp.Reservation.CAHA.CAHAH04("",
                                                           "GetLotCnt");
         h.Owner = this;
         DialogResult dr = h.ShowDialog();
         if (dr == DialogResult.OK)
         {
             SendKeys.Send("{Tab}");
         }
     }
     catch (Exception ex)
     {
         Basic.ShowMessage(3, ex.Message);
     }
 }
Esempio n. 4
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 picLotCnt_Click(object sender, EventArgs e)
 {
     try
     {
         txtLotCnt.Focus();
         CAHA.CAHAH04 h = new Erp.Reservation.CAHA.CAHAH04("",
                                                           "GetLotCnt");
         h.Owner = this;
         h.ShowDialog();
         if (txtLotCnt.Text != "")
         {
             txtMemberNo.Focus();
         }
     }
     catch (Exception ex)
     {
         Basic.ShowMessage(3, ex.Message);
     }
 }