jframe open another frame using button actionlistener

Solutions on MaxInterview for jframe open another frame using button actionlistener by the best coders in the world

showing results for - "jframe open another frame using button actionlistener"
Gabriela
15 May 2018
1btnLogin.addActionListener(new ActionListener() 
2{
3    public void actionPerformed(ActionEvent e) {
4        this.setVisible(false);
5        new FrmMain().setVisible(true); // Main Form to show after the Login Form..
6    }
7});
8
similar questions