コード例 #1
0
ファイル: AutorizationForm.cs プロジェクト: HoToBe23/TSPP
        //Kнопка ОК
        private void button2_Click(object sender, EventArgs e)
        {
            string UserLogin, UserPassword;

            if (textBox1.Text == "" || textBox1.Text == "")
            {
                MessageBox.Show("Не введено дані!");
                return;
            }

            UserLogin    = textBox1.Text;
            UserPassword = textBox2.Text;

            Autorization autorization = new Autorization();

            if (!autorization.CheckLoginAndPassword(UserLogin, UserPassword))
            {
                MessageBox.Show("Введені дані не співпадають з даними адміністратора");
                return;
            }
            else
            {
                MessageBox.Show("Успішно ввійшли в систему як адміністратор");
                autorization.EditStatusAutorization(true);
                this.Hide();
                StartMenuAfterAutorizationForm SwitchStartMenu = new StartMenuAfterAutorizationForm();
                SwitchStartMenu.Show();
            }
        }
コード例 #2
0
ファイル: BooksOutputForm.cs プロジェクト: HoToBe23/TSPP
        //Кнопка ОК
        private void button1_Click(object sender, EventArgs e)
        {
            Autorization autorization = new Autorization();

            if (!autorization.CheckAutorization())
            {
                this.Hide();
                StartMenuAfterAutorizationForm SwitchStartMenu = new StartMenuAfterAutorizationForm();
                SwitchStartMenu.Show();
            }
            else
            {
                this.Hide();
                StartMenuForm SwitchStartMenu = new StartMenuForm();
                SwitchStartMenu.Show();
            }
        }
コード例 #3
0
        //Кнопка Повернутися
        private void button3_Click(object sender, EventArgs e)
        {
            DialogResult ChooseYesNo = MessageBox.Show("Впевнені що хочете повернутися в головне меню?", "MyBooks", MessageBoxButtons.YesNo);

            if (ChooseYesNo == DialogResult.Yes)
            {
                Autorization autorization = new Autorization();

                if (autorization.CheckAutorization())
                {
                    this.Hide();
                    StartMenuAfterAutorizationForm SwitchStartMenu = new StartMenuAfterAutorizationForm();
                    SwitchStartMenu.Show();
                }
                else
                {
                    this.Hide();
                    StartMenuForm SwitchStartMenu = new StartMenuForm();
                    SwitchStartMenu.Show();
                }
            }
        }