Package edu.bellevue.its.migration.gui.dialogs

Examples of edu.bellevue.its.migration.gui.dialogs.UserLookupDialog


       
    }//GEN-LAST:event_btnCancelActionPerformed

    private void btnFindBAActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnFindBAActionPerformed
        // TODO add your handling code here:
        UserLookupDialog uld = new UserLookupDialog(null, true, "BA");
        uld.setVisible(true);
       
        if (uld.dialogResult != null)
        {
            gi.setBusinessAnalyst(uld.dialogResult.getIdUser());
            txtBA.setText(AppHelper.getUserDisplayName(uld.dialogResult));
View Full Code Here

TOP

Related Classes of edu.bellevue.its.migration.gui.dialogs.UserLookupDialog

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.