private void btnDelete_Click(object sender, EventArgs e) { try { if (!txt_input_cd.Text.Equals("INPUT_CD")) { int rsNum = wDm.floorPlanDelete(dtp_input_date.Text, txt_input_cd.Text); if (rsNum == 0) { MessageBox.Show("성공적으로 삭제하였습니다."); grid_list(); resetSetting(); } else if (rsNum == 1) { MessageBox.Show("삭제에 실패하였습니다."); } else { MessageBox.Show("Exception 에러 "); } } else { MessageBox.Show("삭제할 도면을 선택하세요."); return; } } catch (Exception ex) { MessageBox.Show(ex.ToString() + "Exception 에러"); } }