Package vistas

Examples of vistas.vs_agendar_cita


    private void btn_citaActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btn_citaActionPerformed
        //Verificar que hay un registro seleccionado
        if(registroSeleccionado!=null){
            lb_status.setText("");
            //Enviar a la vista de agendar cita
            vs_agendar_cita agendar = new vs_agendar_cita(registroSeleccionado);
            agendar.show(true);
        }else{
            lb_status.setText("Debes seleccionar un registro.");
        }
    }//GEN-LAST:event_btn_citaActionPerformed
View Full Code Here

TOP

Related Classes of vistas.vs_agendar_cita

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.