Results 1 to 5 of 5
Thread: overlapping forms
- 08-23-2008, 06:07 AM #1
Member
- Join Date
- Aug 2008
- Posts
- 7
- Rep Power
- 0
overlapping forms
Hii..i have designed a form with 4 menus..if we click on one menu it will display the contecnts in tht page i.e.,the labels n textfields...like tht i have deigned 4 pages..but if we click on one menu and after getting tht page after tht if i click on next menu the labels n textfields are overlapping...i need to know the code so tht we can exit from tht page and go to next page...
- 08-23-2008, 06:19 AM #2
- 08-25-2008, 11:01 AM #3
Member
- Join Date
- Aug 2008
- Posts
- 7
- Rep Power
- 0
pages means forms...i'm not using card layout...can u tell how to use it...
if u want i can send u the code and after seeing tht u can get an idea i suppose..
- 08-26-2008, 04:39 AM #4
Yea if u can...
- 08-26-2008, 10:30 PM #5
Member
- Join Date
- Aug 2008
- Location
- The Netherlands
- Posts
- 25
- Rep Power
- 0
add remove JPanels from JFrame
Correct me if I'm wrong but you are trying to put several GUI-elements (JPanels perhaps) on the same JFrame?
What you need to do is first remove the current JPanel from the JFrame with the panel on it. Next add the new JPanel to the JFrame, easy as that!!!! See example below:
Not sure if the repaint is necessary, check that out. Let us know if one of the solutions worksJava Code:public void switchPanel(JPanel sourcePanel, JPanel targetPanel) { jframeObject.remove(sourcePanel); jframeObject.add(targetPanel); jframeObject.repaint(); }
Similar Threads
-
Use multiple forms
By coco in forum Java AppletsReplies: 2Last Post: 06-14-2010, 05:14 AM -
Forms Question
By bradk8605 in forum New To JavaReplies: 3Last Post: 08-13-2008, 08:59 AM -
Login Forms
By dankonsoer in forum New To JavaReplies: 1Last Post: 08-07-2008, 12:06 PM -
How to make online jsp forms from Microsoft word forms in java
By jiten.mistry in forum Advanced JavaReplies: 2Last Post: 04-28-2008, 10:56 AM -
Forms in jsp
By bbq in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 07-05-2007, 04:28 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks