Jomy Antony
Jomy Antony

Reputation: 21

How to close current window in jframe?

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

import javax.swing.JFrame;

import class_program.NextPage;

class Login extends JFrame implements ActionListener
{
 JButton SUBMIT;
 JPanel panel;
 JLabel label1,label2;
 final JTextField  text1,text2;
  Login()
  {
    label1 = new JLabel();
    label1.setText("Username:");
    text1 = new JTextField(15);

    label2 = new JLabel();
    label2.setText("Password:");
      text2 = new JPasswordField(15);

    SUBMIT=new JButton("SUBMIT");

    panel=new JPanel(new GridLayout(3,1));
    panel.add(label1);
    panel.add(text1);
    panel.add(label2);
    panel.add(text2);
    panel.add(SUBMIT);
    add(panel,BorderLayout.CENTER);
    SUBMIT.addActionListener(this);
    setTitle("LOGIN FORM");
  }
   public void actionPerformed(ActionEvent ae)
  {
    String value1=text1.getText();
    String value2=text2.getText();
        if (value1.equals("jomy") && value2.equals("jomy")) {
    NextPage page=new NextPage();
    page.setVisible(true);
    JLabel label = new JLabel("Welcome:"+value1);
    page.getContentPane().add(label);
  }
    else{
      System.out.println("enter the valid username and password");
      JOptionPane.showMessageDialog(this,"Incorrect login or password",
            "Error",JOptionPane.ERROR_MESSAGE);
  }
}
}
 class jframes
{
  public static void main(String arg[])
  {
    try
    {
    Login frame=new Login();
    frame.setSize(300,100);
    frame.setVisible(true);
    }
  catch(Exception e)
    {JOptionPane.showMessageDialog(null, e.getMessage());}
  }
}

this is used to check password and username that is correct going to next page

package class_program;

import javax.swing.JFrame;

 public class NextPage extends JFrame
 {
   public NextPage()
    {
      setDefaultCloseOperation(javax.swing.
           WindowConstants.DISPOSE_ON_CLOSE);
      setTitle("");
        setSize(400, 200);
       }
}

this is program for next page .that the same time the old password and user name that window is not closed.can u helping for closing that window?

Upvotes: 2

Views: 27484

Answers (4)

edilon Junior
edilon Junior

Reputation: 71

In your new window method (newFrame) set this:

newFrame = new JFrame();
newFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

Upvotes: 0

sunone5
sunone5

Reputation: 375

just use the

dispose(); inside actionPerformed

public void actionPerformed(ActionEvent ae)
  {
    String value1=text1.getText();
    String value2=text2.getText();
    if (value1.equals("jomy") && value2.equals("jomy")) {

     dispose(); // this will close current login box window

     //this will open a nextpage window.
     NextPage page=new NextPage();
     page.setVisible(true);
     JLabel label = new JLabel("Welcome:"+value1);
     page.getContentPane().add(label);
    }
    else{
      System.out.println("enter the valid username and password");
      JOptionPane.showMessageDialog(this,"Incorrect login or password",
            "Error",JOptionPane.ERROR_MESSAGE);
  }

Upvotes: 8

lazydot
lazydot

Reputation: 1

1) Your Login class doesnt define setDefaultCloseOperation(DO_SOMETHING_ON_CLOSE). 2) If you put setVisible(false); before

nextPage page=new NextPage();
page.setVisible(true);

together with defining default close operation on the first frame it will work.

Upvotes: 0

willcodejavaforfood
willcodejavaforfood

Reputation: 44063

You close a JFrame by calling setVisible(false) on it just like you open it by calling setVisible(true)

Upvotes: -2

Related Questions