Exemplo n.º 1
0
        private void btnLogin_Click(object sender, EventArgs e)
        {
            sr = new StreamReader("C/Usuarios.txt");
            String datosUsuario;
            bool   adentro = false;

            String[] datos;
            while ((datosUsuario = sr.ReadLine()) != null)
            {
                datos = datosUsuario.Split('|');
                if (datosUsuario.Length > 1)
                {
                    if (datos[0] == txtUser.Text && datos[1] == txtPassword.Text)
                    {
                        user.setUser(datos[0]);
                        adentro = true;
                        sr.Close();
                        frmPokedex form = new frmPokedex(user.getUser());
                        form.ShowDialog();
                        this.txtUser.Text     = null;
                        this.txtPassword.Text = null;
                        sr = new StreamReader("C/Usuarios.txt");
                    }
                }
            }

            if (adentro == false)
            {
                MessageBox.Show("Usuario o contraseña incorrecta. Intente nuevamente", "Error");
                this.txtUser.Text     = null;
                this.txtPassword.Text = null;
            }
            sr.Close();
        }
Exemplo n.º 2
0
        private void lblEvolucion1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            frmPokemon form = new frmPokemon(3, usuario.getUser(), lblEvolucion1.Text);

            form.ShowDialog();
        }