示例#1
0
        private void BtnBookingChangeCustomer_Click(object sender, EventArgs e)
        {
            Booking_Customer bookingAdd = new Booking_Customer();
            DialogResult     result     = bookingAdd.ShowDialog();

            txtBookingCustomer.Text = Booking.customerName;
        }
示例#2
0
        private void Booking_Details_Load(object sender, EventArgs e)
        {
            Booking_Customer customer = new Booking_Customer();
            DialogResult     result   = customer.ShowDialog();

            if (result == DialogResult.Cancel)
            {
                Dispose();
                return;
            }

            Booking_Date bookEventDate = new Booking_Date();

            result = bookEventDate.ShowDialog();

            if (result == DialogResult.Cancel)
            {
                Dispose();
                return;
            }
            loadBookingDetails();
        }
示例#3
0
        private void BtnChangeCustomer_Click(object sender, EventArgs e)
        {
            Booking_Customer booking_Customer = new Booking_Customer();

            booking_Customer.ShowDialog();
        }