Most voted "jinternalframe" questions
Jinternalframe is a java-swing component that provides many of the features of a native frame, including dragging, closing, becoming an icon, resizing, displaying the title, and supporting a menu bar.
Learn more…9 questions
Sort by count of
-
3
votes1
answer178
viewsIllegalityxception when reopening jInternalFrame several times
I am with an application that is validating when the window JInternalFrame is open or closed, but if the window is opened and closed a few times in a row, the console shows an error and does not…
-
1
votes2
answers797
viewsAvoid opening more than one of the same Jinternalframe
I’m developing an application that uses JInternalFrame within a JDesktop. When I push the button, this one JInternalFrame is instantiated and the window is opened, however, if I press the button…
-
1
votes1
answer421
viewsDisplay confirmation when trying to close a Jinternalframe
I’m creating a program using JInternalFrame, but would like to request a confirmation in case the user click the close button "Closable". For that, I’m trying to overwrite the methods…
-
1
votes1
answer172
viewsAdd Jinternalframe to another Class
I own a JInternalFrame for editing budgets, my JDesktopPane is in a different class from the class I call the JInternalFrame, how to add the JInternalFrame in the JDesktopPane. Start Class public…
-
0
votes1
answer929
viewsHow to superimpose a Jinternalframe?
The main screen of the system I’m developing opens with a JInternalFrame welcome automatically, and it contains some buttons for registration, calendar etc... However, when I click on one button to…
-
0
votes1
answer657
viewsHow to check if a Jinternalframe is already open in Jdesktoppane?
How to check whether a JInternalFrame is already open in the JDesktopPane and, if so, put him in focus on others? I have tried several ways I found searching, but always opens a new frame, even if…
-
0
votes0
answers155
viewsInternal frame adjustable
I made a simple code in netbeans from an internalframe that loads inside the jframe, but the internalframe is a fixed size. If I open it with a full screen…
-
0
votes1
answer68
viewsHow to close one Jinternalframe when opening another?
Hi guys I’m developing a project for my course, and when I click on the menu to open a new JInternalFrame, the same opens "below" of the other already opened. I would like to know how to open it "on…
-
0
votes1
answer939
viewsOpen Jinternalframe from another
I was learning to play with JDesktopPane in order to use in future projects because I find this function very interesting. I tried to call a JInternalFrame from one button inside another…