Esempio n. 1
0
        private void chỉnhSửaThờiGianToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form5 f = new Form5();

            while (f.ShowDialog() == DialogResult.OK)
            {
                if (f.getTB1() == "" || f.getTB2() == "")
                {
                    MessageBox.Show("Chưa điền đủ thông tin", "Title", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    continue;
                }
                string a = f.getTB1();
                string b = f.getTB2();
                if (check_flight_exist(obj, a) == false)
                {
                    MessageBox.Show("Mã chuyến bay này không tồn tại", "Title", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    f.Close();
                    break;
                }
                Changeflightdepart(obj, a, b);
                MessageBox.Show("Đặt lại ngày khởi hành thành công", "Title", MessageBoxButtons.OK, MessageBoxIcon.Information);
                f.Close();
                break;
            }
        }