private void button1_Click_1(object sender, EventArgs e) { Home_page f = new Home_page(); this.Hide(); f.ShowDialog(); this.Show(); }
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 !"); //} }
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 !"); } }