コード例 #1
0
        private void linkLabel1_LinkClicked(object sender, EventArgs e)
        {
            this.Hide();
            checkReservation reservationForm = new checkReservation(Login.person.id);

            reservationForm.Show();
        }
コード例 #2
0
        private void reservationsButton_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Hide();
            checkReservation f2 = new checkReservation(Login.person.id);

            f2.ShowDialog();
            this.Close();
        }
コード例 #3
0
        public void CheckWhichFormWasOpened()
        {
            string previousPage = Login.previousPage;

            if (previousPage == "Menu")
            {
                Menu menuForm = new Menu();
                menuForm.Show();
                this.Hide();
            }
            else if (previousPage == "Reservation")
            {
                this.Hide();
                Reservation reservationForm = new Reservation(Login.person.id);
                reservationForm.Show();
            }
            else if (previousPage == "Dashboard")
            {
                this.Hide();
                Dashboard dashboardForm = new Dashboard(person.id);
                dashboardForm.Show();
            }
            else if (previousPage == "checkReservations")
            {
                this.Hide();
                checkReservation checkReservationForm = new checkReservation(Login.person.id);
                checkReservationForm.Show();
            }
            else if (previousPage == "ContactUs")
            {
                this.Hide();
                contactUs contactForm = new contactUs();
                contactForm.Show();
            }
            else if (previousPage == "AboutUs")
            {
                this.Hide();
                aboutUs aboutForm = new aboutUs();
                aboutForm.Show();
            }
            else if (previousPage == "Home")
            {
                this.Hide();
                homePage homeForm = new homePage();
                homeForm.Show();
            }
            else
            {
                this.Hide();
                homePage Homepage = new homePage();
                Homepage.Show();
            }
        }
コード例 #4
0
 private void CheckReservation(object sender, EventArgs e)
 {
     try
     {
         checkReservation reservationForm = new checkReservation(Login.person.id);
         this.Hide();
         reservationForm.Show();
     }
     catch
     {
         MessageBox.Show("You have to be logged in order to see this page.");
     }
 }
コード例 #5
0
 private void reservationsButton_LinkClicked(object sender, EventArgs e)
 {
     try
     {
         checkReservation reservationForm = new checkReservation(Login.person.id);
         this.Hide();
         reservationForm.Show();
     }
     catch
     {
         MessageBox.Show("You have to be logged in order to see this page. eerst ingelogd zijn.");
     }
 }