Problema resuelto:
gracias a todos por ayudar!
Código (cpp) [Seleccionar]
#pragma endregion
static int cont=0;
private: System::Void textBox1_TextChanged(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void textBox2_TextChanged(System::Object^ sender, System::EventArgs^ e) {
this->textBox2->PasswordChar='*';
}
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
if (textBox1->Text=="Victortgpc" && textBox2->Text=="051520")
{
BasedeDatos ^ ObjectForm=gcnew BasedeDatos; ObjectForm->ShowDialog (this);
}
else MessageBox::Show("ERROR: Contraseña o Usuario Incorrectos. Vuelve a intentar");
textBox1->Text="";
textBox2->Text="";
cont=cont+1;
if (cont>=3) MessageBox::Show ("Has excedido el numero Maximo de intentos. Vuelve mas tarde");
}
private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) {
label1->Text="Usuario";
label2->Text="contraseña";
button1->Text="Aceptar";
}
};
}
gracias a todos por ayudar!