Esempio n. 1
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            Home_page f = new Home_page();

            this.Hide();
            f.ShowDialog();
            this.Show();
        }
Esempio n. 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            //Vào chương trình
            //         string username = textusername.Text;
            //         string password = textpassword.Text;
            //if (login(username, password))
            //{
            Home_page f = new Home_page();

            this.Hide();
            f.ShowDialog();
            this.Show();
            //}
            //else
            //{
            //	MessageBox.Show("Sai tên tài khoản hoặc mật khẩu !");
            //}
        }
Esempio n. 3
0
        private void button1_Click(object sender, EventArgs e)
        {
            //Vào chương trình


            string username = textusername.Text;
            string password = textpassword.Text;

            if (login(username, password))
            {
                get_username.user = username;

                Home_page f = new Home_page();
                this.Hide();
                f.ShowDialog();
                this.Show();
            }
            else
            {
                MessageBox.Show("Sai tên tài khoản hoặc mật khẩu !");
            }
        }