private void btnExit_Click(object sender, EventArgs e) { if (txt_updateValue.Text != null && !txt_updateValue.Text.ToString().Equals("")) { try { Decimal.Parse(txt_updateValue.Text); wnDm wDm = new wnDm(); string input_date = txt_input_date.Text.ToString(); string input_cd = txt_input_cd.Text.ToString(); string input_seq = txt_seq.Text.ToString(); string label_nm = txt_label_nm.Text.ToString(); string Update_amt = txt_updateValue.Text.ToString(); if (sInputProductGubun.Equals("1")) { int rsNum = wDm.Update_Raw_Input_Amt(input_date, input_cd, input_seq, Update_amt, sFrozen_gubun); if (rsNum == 0) { MessageBox.Show("성공적으로 수정하였습니다."); returnValue = "1"; this.Close(); } else if (rsNum == 1) { MessageBox.Show("저장에 실패하였습니다"); } else { MessageBox.Show("Exception 에러"); } } else if (sInputProductGubun.Equals("2")) { int rsNum = wDm.Update_Item_Input_Amt(input_date, input_cd, input_seq, Update_amt); if (rsNum == 0) { MessageBox.Show("성공적으로 수정하였습니다."); returnValue = "1"; this.Close(); } else if (rsNum == 1) { MessageBox.Show("저장에 실패하였습니다"); } else { MessageBox.Show("Exception 에러"); } } } catch (Exception ex) { MessageBox.Show("초기 수량 양식이 잘못되었습니다."); return; } } }