1. How do I find the current focussed InternalFrame? stackoverflow.comI am having multiple InternalFrames (JIF) added to a desktop manager. How do I know which one has the focus at the moment? |
2. how to create internal frame in netbeans platform? stackoverflow.comI created class NewProject extends JInternalFrame. Then I create New...Action named "NEW", localised in File menu. I put code |
3. problem when adding an internal frame coderanch.comhi, i have an application in which i had to add an internal frame and show the image of particular icon when some button is clicked. i have added the internal frame to a JLayeredPane and i am able to get the image, but the problem is i am getting an exception when i drag the internal frame...is there any way ... |
4. Array Index Out of Bounds internal frame coderanch.comI have an internal frame that opens inside a main window. When a button is clicked on the internal frame, I setVisible(false) and open a new internal Frame. Then when I close the second one I setVisible(true) on the first one. Then if I do it again, without restarting the program I get an Array index out of bounds error on ... |
5. new process in internal frame coderanch.comAre you trying to do something like this: import javax.swing.*; import java.awt.*; import java.awt.event.*; public class ProcessFrame extends JFrame { private final static int WIDTH = 400; private final static int HEIGHT = 400; private Process externalProcess; public ProcessFrame() { getContentPane().setLayout(new FlowLayout()); setSize(new Dimension(WIDTH, HEIGHT)); JButton button = new JButton("Launch new Process"); button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { try ... |
6. Internal Frame coderanch.comHi, I am diplaying a file list and its content in a split pane. The left side is the file list and the right side is the JInternalFrame object that diplays the file content. Each time an item is chosen in the list, an internal frame is displayed. If the same items is pressed twice, two identical internal frames are displayed. ... |
7. more internal frame problems coderanch.comi have an JDesktopPane application: the main internal frame is set to maximum to take up the entire space of the JFrame and several smaller internal frames open when needed. there seem to be two major problems with this situation, however, and i was wondering if anyone could help: 1. The smaller internal frames 'disappear' behind the large (main) internal frame ... |
8. how to invoke another internalframe to another internalframe coderanch.comclass FrameReactor extends JInternalFrame implements ActionListener { public void theMethodToCall() { .... } public void actionPerformed( ActionEvent e ) { theMethodToCall(); } } class FrameOriginator extends JInternalFrame { private JButton b; ... public void addActionListener( ActionListener l ) { b.addActionListener( l ); } public void removeActionListener( ActionListener l ) { b.removeActionListener( l ); } } |
9. Internal Frame quirk coderanch.comI'm enclosing some code I use to add a JInternalFrame containing components to a Frame. It looks okay but it looks like there is a frame underneath the JIF with the corners being sligtly covered. Picture a cardbard frame where the inner four corners are curved. Now place a perfect rectangle piece of paper over the frame. The piece of paper ... |
10. Internal frame selction coderanch.com |
11. how to interact between two internalframe coderanch.com |
12. InternalFrame Problem coderanch.comHi all, I have developed an MDI application using JDesktoppane and JInternalFrames. When i have developed using JFrames it was working with great speed, when i have changed that into JInternalFrames and JDesktoppane it is slow down to a great extent. i just don't know what is the problem.... Please help me in this regard.. Thanks and Regards |
13. toolbar in internalframe coderanch.comimport java.awt.*; import javax.swing.*; public class DesktopTest { public DesktopTest() { JMenu menu = new JMenu("menu"); menu.add(new JMenuItem("item 1")); menu.add(new JMenuItem("item 2")); JMenuBar menuBar = new JMenuBar(); menuBar.add(menu); JToolBar toolBar = new JToolBar(); toolBar.add(new JButton("button 1")); toolBar.add(new JButton("button 2")); JPanel north = new JPanel(new BorderLayout()); north.add(toolBar, "North"); JInternalFrame iframe = new JInternalFrame("iframe", true, true, true, true); iframe.setSize(300,300); iframe.setLocation(50,50); iframe.setVisible(true); JDesktopPane desktop ... |
14. Internal Frame Manager coderanch.comHi - I'm fairly new to Java and Swing and hope someone can guide me in the right direction over a GUI I'm designing at the moment. I'm looking for a variation on an internal frame manager. Effectively I'm after finding/designing a layout manager that offers the functionality you find in (say) a simple drawing program. I want to be able ... |
15. Problem with dynamic InternalFrames. coderanch.comHI, I'am new to swings so please excuse if my logic is not proper and please correct me asap.I'am using 3classes myFrame ,myInternalFrame1 and myInternalFrame2. myFrame extends JFrame and myInternalFrame1 & myInternalFrame2 extends JInternalFrames. myFrame is my main class and shown first in the view.On an event on clicking a link I'am adding myInternalFrame1 to the jDesktopPane from myFrame.This works fine. ... |
16. internal frame coderanch.comIn My Swing program , i am using internal frame.the internal frame name is IFMservice, this internal frame i am calling from main frame, during exceution time i am geting the following exception, can help me to rectify my exception java.lang.NoSuchFieldError: errorIcon at utils.JDlgError.initComponents(JDlgError.java:216) at utils.JDlgError. |
17. Java Result: 1073807364- Printed as Output when setting internal frame visible coderanch.comOriginally posted by mohammed sanaullah:.. after a minor change when From the information you have provided, it looks like your minor change is affecting something else. You can try the following: 1) Revert back the change and confirm everything is working fine like it was before. 2) Looks like your application is entering some time consuming loop. Do you immediately terminate ... |
18. Link internal frame to menu item coderanch.comHi, Could you please suggest me how to link the internal frames to menu item in swing? There is an existing application that has a base Frame and the internal frames are added to its JDesktopPane. I need to create a new menu bar that will have opened Internal frames (basically different small applications) in its menu item. When i click ... |
19. InternalFrame and FocusListener java-forums.orgHi All, Please help me. I have a Main Frame and a text field component in it, when i click on the text field i will open a internal frame, and this works fine. Now my requirement is when i click again outside the internal frame i.e anywhere on the main frame, the internal frame should be hidden, I implemented this ... |
20. How do I modify a specific component within a active internalframe? java-forums.orgHello everybody, I am still learning java at this point, but I seem to have surpassed the 3 java books I own. I have an issue here that I am confident that most of you can answer. I am attempting to change the icon of a button in a internalframe when pressed. The code below shows the text of a button ... |