From a variety of resources (this website, a book, a friend) I have managed to make a JFrame
(JFrame1) that responds to a button. It makes another JFrame
(JFrame2), and changes the JFrame.setVisible()
to false
.
What I'm trying to do is make it so that when a declared Back button is pressed, it closes JFrame2
and sets JFrame1
visibility to true
. That's all fine, but when I do JFrame2.setVisiblity(false)
, JFrame2
is still visible. I've tried dispose()
; but that doesn't work either.
I'm also wondering, since I've read on stackoverflow, that creating multiple JFrames
is bad programming. So should I use JDialogs
instead?
I am trying to display a bunch of information, and allow you to interact with the GUI to navigate around the information. The information would be arranged by alphabetical order.
Also, I'm not sure how to post code on here, so if you need to see what I currently have, just tell me how to post code :D