コード例 #1
0
        private void hiệuChỉnhThôngTinToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form7 f = new Form7();

            while (f.ShowDialog() == DialogResult.OK)
            {
                if (f.getTB1() == "" || f.getTB2() == "" || f.getTB3() == "")
                {
                    MessageBox.Show("Chưa điền đủ thông tin", "Title", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    continue;
                }
                if (Convert.ToInt32(f.getTB3()) < 20)
                {
                    MessageBox.Show("Số chỗ phải >= 20", "Title", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    continue;
                }
                string a = f.getTB1();
                string b = f.getTB2();
                int    c = Convert.ToInt32(f.getTB3());
                if (check_plane_exist(obj, a) == false)
                {
                    MessageBox.Show("Mã máy bay này không tồn tại", "Title", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    f.Close();
                    break;
                }
                changeairplane(obj, a, b, c);
                MessageBox.Show("Hiệu chỉnh thành công", "Title", MessageBoxButtons.OK, MessageBoxIcon.Information);
                f.Close();
                break;
            }
        }