Hi everyone,
i need to design a GUI like a normal installation wizard to install something but im stuck at the connection between JFrame and JPanel.. these are the questions in my mind now..
1. Is netbeans good for designing GUI?
im just started to learn it now...
2. how to implement page switching method in a proper way? for example i press next button to next page...
i've tried the JFrame to JFrame method... when i need to open a new page i just create a new JFrame..
new Page2(); //new frame for page 2
dispose(); //terminate current frame
but i noticed that it is kidda slow when switching between JFrame...
maybe there is a way to solve this problem??
so i try to implement it with 1 JFrame with multiple JPanel...
press next button to close the current panel and open the new one....
but if i use this method im stuck at Netbeans GUI tool, it don't allow me to overlap panels...
Thanks !

