Back Button
870487Jul 28 2012 — edited Jul 28 2012hi, 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);
}