Example #1
0
 private void pictureBox4_Click(object sender, EventArgs e)
 {
     //cargaDatos();
     start = new Pantalla_Principal();
     start.Show();
     this.Hide();
 }
Example #2
0
 private void txtPassword_KeyPress(object sender, KeyPressEventArgs e)
 {
     start = new Pantalla_Principal();
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         cargaDatos();
     }
 }
Example #3
0
        private void btnAceptar_Click(object sender, EventArgs e)
        {
            Pantalla_Principal obj = new Pantalla_Principal();

            revisar();
            MessageBox.Show("sentencia:\n " + sentencia);
            obj.recibeParametro(sentencia);
            this.Close();
        }