Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Back Button

870487Jul 28 2012 — edited Jul 28 2012
hi, i havetwo frames login & homepage.There is button in login page which is directed to homepage.There is another button back in homepage.now what i m trying is,on clicking back button, Login page will appear.I have done this through instantiating the login frame.But the problem i m facing is whenever i presses back button,new login frame appears.So what modification should i make in code so that new frame won't appear wheneevr i presses back button

//This is code of back button:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
Login l=new Login();
l.setVisible(true);
}

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 25 2012
Added on Jul 28 2012
1 comment
1,269 views