Package com.GestDB.convert

Examples of com.GestDB.convert.wizarExportarDatos


    }//GEN-LAST:event_jButton12ActionPerformed

    private void jButton11ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton11ActionPerformed
        try {
            // Exporta datos a archivos de texto
            wizarExportarDatos ex1 = null;
            try {
                // si tenemos una pesta�a activa del tipo SQL cojemos la sql si no la pasamos vacia
                String ssql = "";
                if(jTabbedPane1.getSelectedIndex() != -1 && jTabbedPane1.getTitleAt(jTabbedPane1.getSelectedIndex()).trim().equals("SQL"))
                {
                    ssql = ((SQLPannel)jTabbedPane1.getComponentAt(jTabbedPane1.getSelectedIndex())).getQuery();
                }

                ex1 = new wizarExportarDatos(padre.propiedades, new java.awt.Frame(), true,
                    jdbcDriverURL, jdbcDriverClass, user, password,ssql);
                ex1.setBounds((this.padre.DesktopPanel.getWidth()/2)-(ex1.getWidth()/2), (this.padre.DesktopPanel.getHeight()/2)-(ex1.getHeight()/2), ex1.getWidth(), ex1.getHeight());
                this.padre.DesktopPanel.add(ex1);
                ex1.setVisible(true);
            } catch (Exception e) {
                Trackbug.error(e, e.getMessage());
            }
            ex1 = null;
        } catch(Throwable e)
View Full Code Here

TOP

Related Classes of com.GestDB.convert.wizarExportarDatos

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.