Examples of Usuarioexiste()


Examples of Control.CanjearPuntos.Usuarioexiste()

    }//GEN-LAST:event_IdentificacionTActionPerformed

    private void AceptarBActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_AceptarBActionPerformed
        CanjearPuntos canjepuntos = new CanjearPuntos();
        int tipoid = identificacion.getSelectedIndex();
        Usuario UsuarioPrueba = canjepuntos.Usuarioexiste(Long.parseLong(IdentificacionT.getText()), tipoid);
        Canjes canjeactual = new Canjes();
        CanjearPuntos realizarcanje = new CanjearPuntos();
        String estadolabel;
        if (realizarcanje.id(UsuarioPrueba).equals("El usuario no existe")) {
            JOptionPane.showMessageDialog(null, realizarcanje.id(UsuarioPrueba), "Error", JOptionPane.ERROR_MESSAGE);
View Full Code Here

Examples of Control.ConsultarEstado.Usuarioexiste()

    private void aceptarBActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_aceptarBActionPerformed
        long h=0L;
        int a = listadocumentos.getSelectedIndex();
        long doc=Long.parseLong(DocumentoTF.getText());
        ConsultarEstado cestado=new ConsultarEstado();
        Usuario user=cestado.Usuarioexiste(doc, a);
        float num=cestado.obtenerpuntos(user);
        puntos.setText(num+"");
        nombre.setText(user.getNombre());
        apellidos.setText(user.getApellidos());
        correoL.setText(user.getEmail());
View Full Code Here

Examples of Control.CrearCuenta.Usuarioexiste()

        int a;

        String msn1=nuevo.comprobacion1(usuario);
        if(msn1.equals("Continue")){
            CrearCuenta verificar=new CrearCuenta();
            pr=verificar.Usuarioexiste(usuario.getIdentificacion());
            String msn2=nuevo.comprobacion2(usuario,pr);
            if(msn2.equals("Operación Exitosa.")){
//                sistema.setUsuario(usuarios);
                usdao.crear(usuario);
                operacion.setForeground(Color.green);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.