Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-17-2008, 09:20 PM
Member
 
Join Date: Nov 2008
Posts: 7
Rep Power: 0
kirtesh4u is on a distinguished road
Default Help in JFrame
hi all
I have Created one Frame and in which Buttons are provided which opens new Internal Frames....what i want is when i open one Internal Frame the other Internal Frame gets closed...
or

if i click one button then other button gets disabled and when i close the internal frame all disabled button gets enabled...


please help me out....
thank you...
Bookmark Post in Technorati
Reply With Quote
  #2 (permalink)  
Old 11-18-2008, 12:19 AM
Member
 
Join Date: Nov 2008
Posts: 12
Rep Power: 0
jmorris is on a distinguished road
Default
try this in your frames


public class MainFrame extends JFrame implements ActionListener
{
...

public static void main(String[] args) {
MainFrame mainWindow = new MainFrame();
}

public MainFrame() {

...

...

public void actionPerformed(...) {

Object o = e.getSource();
if ( o == newWindowButton) {
newWindow sub = new newWindow(this);
this.setVisible(false);
}





for your second window...

public newWindow(Frame p) {

parent = p;


....
...
...

public void actionPerformed(...) {


....
...
if (o == closeButton) {
parent.setVisible(true); //to show previous window
this.dispose();
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 11-18-2008, 01:40 AM
Fubarable's Avatar
Moderator
 
Join Date: Jun 2008
Posts: 6,502
Rep Power: 8
Fubarable is on a distinguished road
Default
Please do not cross-post this question in multiple fora.
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to use JFrame in JSP ?? priyanka sharma JavaServer Pages (JSP) and JSTL 7 11-28-2008 08:03 AM
JFrame ?? sweet angle AWT / Swing 15 11-06-2008 05:25 PM
jframe amith AWT / Swing 1 05-15-2008 11:03 AM
JFrame problem saytri New To Java 6 01-11-2008 06:12 PM
Help with JFrame Albert AWT / Swing 2 07-04-2007 05:44 AM


All times are GMT +2. The time now is 02:31 AM.



VBulletin, Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2009, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org