Package cli_fmw.utils

Examples of cli_fmw.utils.InfoDialog


            }
        }
    }//GEN-LAST:event_dchLightWorkTillPropertyChange

    private void btServiceListActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btServiceListActionPerformed
        InfoDialog infoDialog = new InfoDialog(MainWindow.mainWindow, serviceInfo, "Список необходимых услуг");
        infoDialog.setVisible(true);
    }//GEN-LAST:event_btServiceListActionPerformed
View Full Code Here


        InfoDialog infoDialog = new InfoDialog(MainWindow.mainWindow, serviceInfo, "Список необходимых услуг");
        infoDialog.setVisible(true);
    }//GEN-LAST:event_btServiceListActionPerformed

    private void btContractActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btContractActionPerformed
        InfoDialog infoDialog = new InfoDialog(MainWindow.mainWindow, contractInfo, "Информация о договоре");
        infoDialog.setVisible(true);
}//GEN-LAST:event_btContractActionPerformed
View Full Code Here

        try {
            int clientID = followupList.get(tabFollowUps.getSelectedRowSorted()).clientID;
            ClientLocal clientLocal = new ClientLocal(clientID, getAuditManager());
            clientLocal.getMother();
            clientLocal.getFather();
            InfoDialog dialog = new InfoDialog((Frame)getContainer(), clientLocal.toHtml());
            dialog.setVisible(true);
        } catch(ClipsException ex) {
            MessageBox.showException(ex);
        }
    }//GEN-LAST:event_btClientInfoActionPerformed
View Full Code Here

            btAnalises.setBackground(DefaultColors.FIELD_TO_INPUT);
        }
    }

private void btInfoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btInfoActionPerformed
    InfoDialog dialog = new InfoDialog(MainWindow.mainWindow, infoText, "Назначаемые услуги");
    dialog.setAlwaysOnTop(true);
    dialog.setVisible(true);
}//GEN-LAST:event_btInfoActionPerformed
View Full Code Here

TOP

Related Classes of cli_fmw.utils.InfoDialog

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.