Package Control

Examples of Control.Login


   
    private void aceptarlogActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_aceptarlogActionPerformed
        String nombre=nombreText.getText();
        String pass=passwordText.getText();
        Login log=new Login();
        if (log.validarLogin(nombre, pass).equals("Login Valido")){
            GUI.iniciar();
            a.setVisible(false);
           }else{
            nombreText.setText("");
            passwordText.setText("");
View Full Code Here

TOP

Related Classes of Control.Login

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.