Beispiel #1
0
 private void ContinueB_Click(object sender, EventArgs e)
 {
     if (verifyInputs())
     {
         PopulateObject();
         //ClearAll();
         overView.myBooking.CustomerID = overView.myCustomer.CustomerID;
         if (overView.payinglaunch == null)
         {
             overView.CreatePaymentForm();
         }
         if (overView.payinglaunch.formClose)
         {
             overView.payinglaunch.Show();
         }
         vL.Visible = false;
         overView.payinglaunch.Show();
     }
     else
     {
         vL.Visible = true;
         vL.Text    = "Error! Check input values";
     }
 }