7.- PROGRAMAR C#, UN LOGIN OCULTAR FORM Y ABRIR FORM

7.- PROGRAMAR C#, UN LOGIN OCULTAR FORM Y ABRIR FORM

loginform


Si tienes Dudas Registrate en esta Pagina Ahí te Ayudara

http://terespondere.com/

 

Código

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Hola_Mundo
{
public partial class Login : Form
{
public Login()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{

}

private void button1_Click_1(object sender, EventArgs e)
{
if (textBox1.Text == «luga»)
{
if (textBox2.Text == «123456»)
{

Inicio abrir = new Inicio();
abrir.Show();
this.Hide();

}
else
{
MessageBox.Show(«Contraseña Incorracta»);
}
}
else {

MessageBox.Show(«Usuario Incorrecto»);
}
}
}
}

Deja una respuesta