i created java frames, but i want them linked together. when you click a link in one page, it takes u to another page. how do i go about it?
Printable View
i created java frames, but i want them linked together. when you click a link in one page, it takes u to another page. how do i go about it?
Is this an HTML problem? This forum is for java programming.Quote:
click a link in one page,
If this is a Java Swing issue, then you shouldn't be creating multiple JFrames for this but rather multiple JPanels that are swapped in your JFrame via a CardLayout. Google the tutorial as it will explain all.