コード例 #1
0
ファイル: LOGIN.cs プロジェクト: 201633533/kinder1
        private void button3_Click(object sender, EventArgs e)
        {
            MySqlConnection conectar = new MySqlConnection("server=127.0.0.1;database=proyecto;Uid=root;");

            conectar.Open();
            MySqlCommand    codigo     = new MySqlCommand();
            MySqlConnection conectanos = new MySqlConnection();

            codigo.Connection  = conectar;
            codigo.CommandText = ("select * from usuarios where matricula ='" + textBoxusuario.Text + "' and pass= '******'");
            MySqlDataReader leer = codigo.ExecuteReader();

            if (leer.Read())
            {
                MessageBox.Show("Bienvenido docente");
                INICIO_SESION_DOCENTES llamar = new INICIO_SESION_DOCENTES();
                llamar.Show();
                this.Hide();
            }

            else
            {
                MessageBox.Show("Usuario incorrecto");
            }

            conectar.Close();
        }
コード例 #2
0
 private void button5_Click(object sender, EventArgs e)
 {
     //CREAMOS LA INSTANCIA DEL FORMULARIO
     INICIO_SESION_DOCENTES obj = new INICIO_SESION_DOCENTES();
     //LLAMAMOS EL OBJETO Y LO PONEMOS VISIBLE
     obj.Visible = true;
     //OCULTAMOS 
     Visible = false;
 }