private void simpleButtonAddClem_Click(object sender, EventArgs e) { bool resultValidateForm = validateForm(); if (!resultValidateForm) { return; } fRMMain.showWaitingForm("กำลังทำการบันทึกข้อมูล"); readData(); bool resultAddClem = false; if (fRMMain.typeOfCustomerClem == "add") { int clemID = conDB.addClem(); fRMMain.closeWaitingForm(); if (clemID == 0) { MessageBox.Show("การเพิ่มข้อมูลผิดพลาด"); } else { fRMMain.typeOfCustomerClem = "edit"; getDataForEdit(clemID); buttonCancel.Visible = true; buttonCopy.Visible = true; buttonPrint.Visible = true; buttonDelete.Visible = true; } } else { resultAddClem = conDB.updateClemProduct(clem_id); fRMMain.closeWaitingForm(); if (!resultAddClem) { MessageBox.Show("การแก้ไขข้อมูลผิดพลาด"); } } }
private void simpleButtonAddClem_Click(object sender, EventArgs e) { bool resultValidateForm = validateForm(); if (!resultValidateForm) { MessageBox.Show("กรุณากรอกข้อมูลที่กำหนด"); return; } readData(); bool resultAddClem = conDB.addClem(); if (resultAddClem) { } else { MessageBox.Show("การเพิ่มข้อมูลผิดพลาด"); } }