Frame « JInternalFrame « Java Swing Q&A





1. using internal frames in swings    forums.netbeans.org

i hav used a jframe and inside that i hav added three internal frames.i need to place a button control in one of the three internal frames,den a code for drawing a rectangle must be executed and output should be displayed in second internal frame,hw can i do it??pls help me...

2. Docking internal frames-Immediate    coderanch.com

3. JInternal Frames    coderanch.com

Hi all, I have a Desktop with a number of JInternal Frames in it. When the user closes a JInternalFrame, I have a Popup asking if the user is sure they want to continue. If the user clicks YES, the window is closed, & if the user clicks NO the window should not be closed. however, to do this I added ...

4. Again Internal Frames(URGENT)    coderanch.com

At the best of times, in the middle of the day, less than 6 hours is pushing it... but.. it's 1 am on this side of the world. (North America) Don't expect a whole bunch of answers that quickly at this time of the day. [This message has been edited by Mike Curwen (edited June 04, 2001).]

5. Swing Internal Frames    coderanch.com

I have a class file with functions for opening several internal frames that can be called from any class. That way, I am able to open an internal frame by hitting a button inside an internal frame and a new frame comes onto the main desktop(not inside the already present internalframe). Anyaway, my problems is that sometimes I need to close ...

6. HELP! Minimising Internal Frames    coderanch.com

7. Adding Components to Internal Frames ????    coderanch.com

I am trying to add swing components such as textfields and buttons to an Internal frame but problem is that the compiler won't allow me to use the c.add(username) method to add a username textfield, I get a nullpointerexception. c is the Container. Does anyone know how to add a simple textfield to a internalframe.

8. Internal Frames Problems...need help    coderanch.com

Hi, what I did was, I created a Class that is my DesktopPane(). And I used that class to fire my multiple internalframes. So every other Internalframe I have is in it's on Class file. So here is some Psuedo to maybe help. my Dekstop Pane ---------------- imports go here class myDesktopPane extends JFrame { variables go here including: internalFrame1 IF1; ...

9. Internal Frames    coderanch.com





10. Main Frame n Internal frame    coderanch.com

i'm doing a project on megabook system. so i was doing the inventory part and the other plp are doing the customer and order etc.... all of us have a menubar n toolbar. but we would like to integrate all that into another file so that the rest can just use the code for both menu n tool bar. cause throught ...

11. Internal Frames    coderanch.com

Use a collection Object in your main Class to keep track of all the Internal Frames you create. Possibly, name them in some sequential order till they are actually saved on the disk; You could then possibly use the filename as the key in the collection Object. Name the TextAreas relative to the names of their parent Internal Frames. What say? ...

12. Internal frames    coderanch.com

13. Reopening internal frames after they have been shut    coderanch.com

Depends on how you are closing it. When you click the X in the upper right corner, the frame is actually disposed. So in order to show the frame again, a new instance of it is required in memory ( frame = new Frame()). Once you have created a new frame, you can then call setVisible(true) to display the frame. If ...

14. Linking internal frames with a line    coderanch.com

Dear All, hope all of you are ok. My Problem is: "Linking internal frames with a line" I'm in the process of making an ERD Diagram that show the tables of the databases and its relations. I'm already did the entities or tables but I face a problem now which is: How I can link or draw the relation line between ...

15. Repainting JInternal Frames    coderanch.com

I am relatively new to Swing..and I must say that it is great once you get the hang of it. I have found that many implementations seem to be rather obscure and take a bit of practice to implement. I have managed to create an application which is composed of a JDesktopPane...hosting many JInternalFrames within. My question: How can I invoke ...

16. Internal Frames    coderanch.com

How is it possible to make a look and feel like the JBUilder has.My frame is divided into three panes.All the three panes are Internal Frames.Now when i close the intenal frame,i want the rest of panes to expand to take its place and through menu bar i can bring back the closed internal frame.Can anybody help as to how to ...





17. Send data between two internal frames    coderanch.com

Hi everyone! Sorry, i already asked this question on java beginner, but didn't get any feedback. And i could use some help... I have a JFrame that contains two internal frames. I would like the first one to send data to be displayed on the second internal frame. (Context: the first one contains a list of parameters saved on the hard ...

18. JInternalFrame Problem: not showing the frame properly    coderanch.com

Hi all, till recently, I'm creating the instance of JFrame on button click to show the Java 3D output which is embed into the JPanel. Now when I modify the same code for JInternalFrame, it showing the 3D output panel but NOT displaying the "close", "maximize" and "minimize" buttons with the frame border. Here is my code snippet (I post the ...