hi guys
i like to open as many frames user wants to open, i mean they can keep clicking the button and i like new frame keep opening. so this is something i got, now i know i have to use int to keep track of how many frames are open and when they are closing.
int openFrams;
Frame newFrame= new Frame("quiz");
openFrams = newFrame;
will that work i tried that but gave me some errors about newFrame is not int so what can i do to make this work. any hint will be appreciated, thank you.