1 Attachment(s)
I'm desperated with NetBeans IDE
Greetings !!
One week ago my students and I have started to devellop a GUI interface with NetBeans IDE 6.9.1.
In class we created a project "Java application" template and then we started to create the GUI.
I created a new JFrame form called FenetrePrincipale on which we added a swing menu bar with different items on it.
I created a new JFrame form called APropos on which we added some JLabel components.
The first exercice consisted to click on the About menu item and then it must show the Form with the about section. Believe me it worked in class.
Back to home with the same project I realized that it worked no more !!
As I changed stuffs in the FenetrePrincipale class I took one student project that worked in class but the issue was the same: it seems that the event MouseClick is not sent to the FenetrePrincipale !! How does it worked before ?
This is the code in the Main.class to call the FenetrePrincipale (it always worked)
Code:
btproject.FenetrePrincipale NotreFenetre=new btproject.FenetrePrincipale();
NotreFenetre.setVisible(true);
This is the code in the FenetrePrincipale that is not working no more but has worked at home and in class last week
Code:
private void jMenuAboutMouseClicked(java.awt.event.MouseEvent evt) {
APropos AProposPopUP=new btproject.APropos();
AProposPopUP.setVisible(true);
}
When putting a breakpoint in the this method, it never step on !!
If someone could explain what is happening... it would be nice !!