Ejemplo n.º 1
0
        private void btnAccept_Click(object sender, EventArgs e)
        {
            bool check = OrderItemsController.OrderItem(UserName, PassWord, ref err);

            if (check == true)
            {
                DialogResult dialogResult;
                dialogResult = MessageBox.Show("Bạn đã đặt hàng thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                if (dialogResult == DialogResult.OK)
                {
                    this.Hide();
                    this.Close();
                }
            }
            else
            {
                MessageBox.Show("Chỉnh sửa thất bại, xin thử lại lần nữa", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }