IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Agents de placement/Fenêtres Java Discussion :

Fermeture des graphes avec la fenêtre principale


Sujet :

Agents de placement/Fenêtres Java

  1. #1
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2015
    Messages
    132
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 30
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Mars 2015
    Messages : 132
    Points : 67
    Points
    67
    Par défaut Fermeture des graphes avec la fenêtre principale
    bonsoir,
    mon interface graphique"Principale" sert a afficher trois graphes en meme temps aprés la selection des checkbox .Mais lorsque les trois graphes apparait , lorsque je ferme un graphe , les deux autres se ferment aussi avec la page "Principale" que je veut laisser sans fermeture.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
     
      if(jCheckBox1.isSelected()){
            try{
              con = getConnection("jdbc:mysql://localhost:3306/base_rapport_tt","root","");
              Statement statement = con.createStatement(rs.TYPE_FORWARD_ONLY,rs.CONCUR_READ_ONLY);
              String sql1 = "Select last_updated_by,(count(id_incident) )*100/(Select count(id_incident) from incident where Status like 'Closed' and open_time between '"+jTextField1.getText()+"' and '"+jTextField2.getText()+"')from incident  where  Status like 'Closed'and open_time between '"+jTextField1.getText()+"' and '"+jTextField2.getText()+"' group by last_updated_by";
              rs1 = statement.executeQuery(sql1);
            DefaultPieDataset pieDataset = new DefaultPieDataset(); 
           while(rs1.next()){      
          pieDataset.setValue( rs1.getString("last_updated_by"),rs1.getDouble(2));                        
    }
    JFreeChart chart = ChartFactory.createPieChart3D("Taux résolution par personne",  pieDataset, true, true, false); 
    PiePlot3D piePlot3d = (PiePlot3D) chart.getPlot();
    piePlot3d.setLabelGenerator(new StandardPieSectionLabelGenerator("{0}={1}"));
    fenetre fen1 = new fenetre(); 
    pnl = new JPanel(new BorderLayout()); 
        fen1.setContentPane(pnl); 
        fen1.setVisible(true);
        setSize(1000, 1000); 
    ChartPanel cPanel1 = new ChartPanel(chart);    
        pnl.add(cPanel1);
     
        File fichier = new File("image1.png"); 
        try { 
          ChartUtilities.saveChartAsPNG(fichier, chart, 400, 250); 
        } catch (IOException e) { 
          e.printStackTrace(); 
        } 
             }
                   catch (Exception e) {
               JOptionPane.showMessageDialog(this,e);
                      }
            }
     
     
           if(jCheckBox2.isSelected()){
             try{
              con = getConnection("jdbc:mysql://localhost:3306/base_rapport_tt","root","");
              Statement statement = con.createStatement(rs.TYPE_FORWARD_ONLY,rs.CONCUR_READ_ONLY);
    String sql2 = "Select Assignment_Group ,(count(1) )*100/(Select count(id_incident) from incident where open_time between '"+jTextField1.getText()+"' and'"+jTextField2.getText()+"') as Etats4 from incident  where open_time between '"+jTextField1.getText()+"'and'"+jTextField2.getText()+"'group by upper (Assignment_Group)";
    rs2 = statement.executeQuery(sql2);
     DefaultPieDataset pieDataset = new DefaultPieDataset(); 
    while(rs2.next()){      
          pieDataset.setValue( rs2.getString("Assignment_Group"),rs2.getDouble(2));                        
            }
    JFreeChart chart = ChartFactory.createPieChart3D("Assignment Group",  pieDataset, true, true, false); 
    PiePlot3D piePlot3d = (PiePlot3D) chart.getPlot();
    piePlot3d.setLabelGenerator(new StandardPieSectionLabelGenerator("{0}={1}"));
    fenetre fen2= new fenetre();
    pnl = new JPanel(new BorderLayout()); 
        fen2.setContentPane(pnl); 
        fen2.setVisible(true);
        fen2.setSize(1000, 1000); 
    ChartPanel cPanel1 = new ChartPanel(chart);    
        pnl.add(cPanel1);
     
        File fichier = new File("image4.png"); 
        try { 
          ChartUtilities.saveChartAsPNG(fichier, chart, 400, 250); 
        } catch (IOException e) { 
          e.printStackTrace(); 
        }   
                      }
     
            catch (Exception e) {
               JOptionPane.showMessageDialog(this,null);
                      }
     
           }
    merci d'avance.

  2. #2
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Salut,

    Dans ta classe fenetre, je suppose que tu dois affecter un mode de fermeture à la JFrame, par appel de setDefaultCloseOperation() : lequel est-ce ?

  3. #3
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2015
    Messages
    132
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 30
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Mars 2015
    Messages : 132
    Points : 67
    Points
    67
    Par défaut
    merci c'est bien marché.
    Lorsque je veut extraire l'éxécutable de l'application en faisant le "clean and Build", ce message d'erreur est apparue :

    Note: C:\Users\nabil.khedhri.stg\Documents\NetBeansProjects\application.backoffice1\src\application\backoffice1\login.java uses or overrides a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.

    classe login:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
     
     
     
    package application.backoffice1;
     
    /*Importation des différents bibliothéques
      les bibliothéques pour établir la connexion à la DB
      les bibliothéques de gestion des requetes SQL
    */
    import java.awt.FlowLayout;
    import java.awt.Graphics;
    import java.io.File;
    import java.io.IOException;
    import java.sql.Connection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import static java.sql.DriverManager.getConnection;
    import java.sql.ResultSet;
    import java.sql.Statement;
    import javax.imageio.ImageIO;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
     
     
    /**
     *
     * @author nabil.khedhri.stg
     */
     
    public class login extends javax.swing.JFrame {
     
     
        /*
         * Creates new form login
        */
     
        //Déclaration des variables de connexion à la base et de la gestion des requetes
     
        Connection con=null;
        ResultSet rs=null;
        Statement stmt=null;
        private String USERNAME_PREFERENCE;
     
        //construction de la fenetre login   
        public login() {
           initComponents();
            this.setResizable(false);
            this.pack();
            java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
            this.setLocation(
            (screenSize.width-this.getWidth())/2,
            (screenSize.height-this.getHeight())/2);
        }
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
        */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            Login = new javax.swing.JPanel();
            jTextField1 = new javax.swing.JTextField(AppPreferences.getLastUserName());
            jButton1 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jButton2 = new javax.swing.JButton();
            p1 = new javax.swing.JLabel();
            p2 = new javax.swing.JLabel();
            jPasswordField1 = new javax.swing.JPasswordField();
            jLabel3 = new javax.swing.JLabel();
            jLabel4 = new javax.swing.JLabel();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Login");
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowOpened(java.awt.event.WindowEvent evt) {
                    formWindowOpened(evt);
                }
            });
     
            Login.setBackground(new java.awt.Color(255, 255, 255));
            Login.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(0, 0, 0), 1, true));
            Login.setPreferredSize(new java.awt.Dimension(517, 271));
     
            jTextField1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jTextField1ActionPerformed(evt);
                }
            });
     
            jButton1.setText("LOGIN");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
                }
            });
            jButton1.addKeyListener(new java.awt.event.KeyAdapter() {
                public void keyTyped(java.awt.event.KeyEvent evt) {
                    jButton1KeyTyped(evt);
                }
            });
     
            jLabel1.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N
            jLabel1.setText("User name");
     
            jLabel2.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N
            jLabel2.setText("Password");
     
            jButton2.setText("QUIT");
            jButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton2ActionPerformed(evt);
                }
            });
            jButton2.addKeyListener(new java.awt.event.KeyAdapter() {
                public void keyTyped(java.awt.event.KeyEvent evt) {
                    jButton2KeyTyped(evt);
                }
            });
     
            p1.setFont(new java.awt.Font("Times New Roman", 0, 14)); // NOI18N
            p1.setForeground(new java.awt.Color(204, 51, 0));
     
            p2.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N
            p2.setForeground(new java.awt.Color(0, 0, 255));
            p2.setText("              ");
     
            jLabel4.setIcon(new javax.swing.ImageIcon(getClass().getResource("/application/backoffice1/Ooredoo_Logo.png"))); // NOI18N
     
            javax.swing.GroupLayout LoginLayout = new javax.swing.GroupLayout(Login);
            Login.setLayout(LoginLayout);
            LoginLayout.setHorizontalGroup(
                LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(LoginLayout.createSequentialGroup()
                    .addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 450, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(255, 255, 255)
                    .addComponent(jLabel3)
                    .addGap(0, 0, Short.MAX_VALUE))
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, LoginLayout.createSequentialGroup()
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addGroup(LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(LoginLayout.createSequentialGroup()
                            .addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 72, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jPasswordField1, javax.swing.GroupLayout.PREFERRED_SIZE, 138, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(LoginLayout.createSequentialGroup()
                            .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 72, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                            .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 138, javax.swing.GroupLayout.PREFERRED_SIZE)))
                    .addGap(337, 337, 337))
                .addGroup(LoginLayout.createSequentialGroup()
                    .addGap(206, 206, 206)
                    .addGroup(LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                        .addGroup(LoginLayout.createSequentialGroup()
                            .addComponent(jButton1)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                            .addComponent(jButton2))
                        .addGroup(LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                            .addComponent(p1, javax.swing.GroupLayout.PREFERRED_SIZE, 236, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addComponent(p2, javax.swing.GroupLayout.PREFERRED_SIZE, 153, javax.swing.GroupLayout.PREFERRED_SIZE)))
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            );
            LoginLayout.setVerticalGroup(
                LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(LoginLayout.createSequentialGroup()
                    .addGroup(LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(LoginLayout.createSequentialGroup()
                            .addGap(20, 20, 20)
                            .addComponent(jLabel3))
                        .addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 99, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addGroup(LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addGroup(LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jPasswordField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addComponent(p1, javax.swing.GroupLayout.PREFERRED_SIZE, 24, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addComponent(p2, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(LoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jButton2)
                        .addComponent(jButton1))
                    .addContainerGap())
            );
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addComponent(Login, javax.swing.GroupLayout.PREFERRED_SIZE, 450, Short.MAX_VALUE)
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addComponent(Login, javax.swing.GroupLayout.DEFAULT_SIZE, 278, Short.MAX_VALUE)
            );
     
            pack();
        }// </editor-fold>                        
     
        private void formWindowOpened(java.awt.event.WindowEvent evt) {                                  
            // TODO add your handling code here:
     
        }                                 
     
        /*Action du bouton QUIT activ avec la souris
          Ce bouton permet de fermer la fenetre d'authentification
        */
        private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                         
            // TODO add your handling code here:
            System.exit(0);
        }                                        
     
        /*Action du bouton LOGIN activ avec la souris
          Ce bouton permet de valider l'identité de la personne selon les champs remplies
        */
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
                     try
                     {
                            AppPreferences.getLastUserName();
     
                           con = getConnection("jdbc:mysql://localhost:3306/nabil","root","");
     
                //la requete SQL permettant de sélectionner les colonnes correspondantes aux chmps du formulaire
     
                String Sql="Select  username,password   from   personne    where username ='"+jTextField1.getText()+"'and password ='" +jPasswordField1.getText()+"'";
     
     
                //exécution de la requete SQL et stockage des résultats rendus
     
                Statement st=con.createStatement();
                ResultSet rs=st.executeQuery(Sql);
     
                //validation de l'identité'
     
                if (rs.next()){
     
                    //fermeture de la fenetre login et lancement de la fentre principale si l'identité est valide
                    //JOptionPane.showMessageDialog(this,"welcome "+jTextField1.getText());
                     AppPreferences.saveUserName(jTextField1.getText());
                    p2.setText("welcome "+jTextField1.getText());
                    p1.setText("");
                    Principale s = new Principale();
                    s.setVisible(true);
                    this.dispose();
     
                }
                else
                {
                    //sinon un message d'erreur sera délivré
                    //JOptionPane.showMessageDialog(this,"invalid username or password");
     
                    p1.setText("Invalid user name or password");
     
                }
            }
            catch (Exception e) {
     
                p1.setText("No data base connection");
            }
     
     
     
     
        }                                        
     
        /*Action du bouton LOGIN active avec la touche Eter
          Ce bouton permet de valider l'identité de la personne selon les champs remplies
        */
     
        private void jButton1KeyTyped(java.awt.event.KeyEvent evt) {                                  
            // TODO add your handling code here:
           try
                     {
                            AppPreferences.getLastUserName();
     
                           con = getConnection("jdbc:mysql://localhost:3306/nabil","root","");
     
                //la requete SQL permettant de sélectionner les colonnes correspondantes aux chmps du formulaire
     
                String Sql="Select  username,password   from   personne    where username ='"+jTextField1.getText()+"'and password ='" +jPasswordField1.getText()+"'";
     
     
                //exécution de la requete SQL et stockage des résultats rendus
     
                Statement st=con.createStatement();
                ResultSet rs=st.executeQuery(Sql);
     
                //validation de l'identité'
     
                if (rs.next()){
     
                    //fermeture de la fenetre login et lancement de la fentre principale si l'identité est valide
                    //JOptionPane.showMessageDialog(this,"welcome "+jTextField1.getText());
                     AppPreferences.saveUserName(jTextField1.getText());
                    p2.setText("welcome "+jTextField1.getText());
                    p1.setText("");
                    Principale s = new Principale();
                    s.setVisible(true);
                    this.dispose();
     
                }
                else
                {
                    //sinon un message d'erreur sera délivré
                    //JOptionPane.showMessageDialog(this,"invalid username or password");
     
                    p1.setText("Invalid user name or password");
     
                }
            }
            catch (Exception e) {
     
                p1.setText("No data base connection");
            }
     
        }                                 
     
        /*Action du bouton QUIT activ avec la touche Enter
          Ce bouton permet de fermer la fenetre d'authentification
        */
     
        private void jButton2KeyTyped(java.awt.event.KeyEvent evt) {                                  
            // TODO add your handling code here:
            System.exit(0); 
        }                                 
     
        private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {                                            
            // TODO add your handling code here:
        }                                           
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
     
                    //lancement de la fenetre login
     
                    new login().setVisible(true);
     
                }
            });
        }
     
        // Variables declaration - do not modify                     
        private javax.swing.JPanel Login;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JPasswordField jPasswordField1;
        private javax.swing.JTextField jTextField1;
        private javax.swing.JLabel p1;
        private javax.swing.JLabel p2;
        // End of variables declaration                   
    }
    merci d'avance.

Discussions similaires

  1. Créer des graphes avec java.
    Par ox@na dans le forum Interfaces Graphiques en Java
    Réponses: 7
    Dernier message: 16/03/2012, 17h05
  2. Faire des graphes avec wxPython
    Par dedesite dans le forum wxPython
    Réponses: 6
    Dernier message: 26/02/2008, 21h42
  3. Réponses: 5
    Dernier message: 18/07/2007, 18h11
  4. Problème d'affichage des graphes avec Tomcat
    Par _Janu_ dans le forum BIRT
    Réponses: 11
    Dernier message: 20/09/2006, 15h30
  5. tracer des graphes avec php
    Par estampille dans le forum Langage
    Réponses: 1
    Dernier message: 19/07/2006, 18h28

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo