Code used in video "Java prog#37. Open new jframe and close previous jframe with the easy code in java netbeans"


Here I am providing the downloadable code link of  the Java code I have used in the video
 "Java prog#37. Open new jframe and close previous jframe with the easy code in java netbeans"  of my YouTube channel ProgrammingKnowledge

Click Link to watch the video LINK

This code below is for the NewActionPerformed  method action perform



  private void NewActionPerformed(java.awt.event.ActionEvent evt) {                                         
      
        
        close();
        Userino_frame s = new Userino_frame();
         s.setVisible(true);
    } 

Comments