hello friends,
i have two frames suppose A and B,
when i open or make visible frame B from frame A by making a new object of frame B, I make invisible frame A by " this.setVisible(false); "
when i done with work in frame B, i need to close frame B (that i do with dispose method)
and again want to make visible frame A.
now how can i make visible frame A from frame B that i made invisible by this object in frame A earlier ?
Do i need to make new object of frame A in frame B ? If so, then how to retain or maintain previous values in frame A?