Hi!
I'm working on WFA and I trying to show a message box when the user enters username/password wrong but I can't find where is the mistake.
{if (textBox1.Text == "usario" && textBox2.Text == "password") ;
{
Form2 a = new Form2();
a.Show();
this.Hide();
}
else;
MessageBox.Show("nombre de usario o contraseña no esta correcto");
}
}
}