Esempio n. 1
0
        private void newBtns_btnCreate_Event(object sender, EventArgs e)
        {
            string            headName = "검사항목등록";
            frmCheckListPopUp pop      = new frmCheckListPopUp(headName);

            pop.ShowDialog();
        }
Esempio n. 2
0
        private void newBtns_btnUpdate_Event(object sender, EventArgs e)
        {
            if (cl_id == 0)
            {
                MessageBox.Show("수정할 항목을 선택해주세요");
                return;
            }

            string headName = "검사항목수정";

            frmCheckListPopUp pop = new frmCheckListPopUp(headName, cl_id, cl_name, product_id, product_name, cl_stnd, cl_comment, cl_uadmin, cl_type);

            pop.ShowDialog();
        }