1. Swing problem!(problem in showing a frame) stackoverflow.comsorry for posting a lot of code!!I don't know that why my ListFrame doesn't work??? these are the classes.At first I run the MainServer and then I will run the MainFrame in ... |
2. I have a JFrame problem stackoverflow.comhi how can we create a main JFrame with background image and a JFrame inside the main JFrame with Java Swing? thank you very much |
3. Frame Showing Problem stackoverflow.comHey Guys |
4. problem with revalidating a jframe stackoverflow.comI have this code which should take the radio button input do a little math and display a popup. which it does fine. but then it is supposed to re validate ... |
5. Java JFrame problem stackoverflow.comJust trying to make a window with JFrame. It always says "Can't find synbol" for 'new JFrame'
|
6. GUI Window Ordering and removing display problem stackoverflow.comI am having problems in synchronising how my GUI will appear... Currently I have the following as the main program
|
7. JFrame problems stackoverflow.comI am creating a popup JFrame that will have a message and yes/no buttons. I am using this method in 2 ways. In 1, the main program calls this method and ... |
8. JFrame problem bytes.com |
9. Problem in reopeninig the JFrame bytes.comShashmita: When you are looking for answers to problems please post in the *answers* areas. The 'writing room' is used when you are writing an article that will be posted in ... |
10. Problem with Swing Application/Master-Detail sample form forums.netbeans.orgPosted: Thu Jan 21, 2010 10:16 pm Post subject: Problem with Swing Application/Master-Detail sample form Hi, First thanks for your help. I am working on a Swing Application, ... |
11. Problem with JFrame coderanch.com |
12. Frame/JFrame maximization problem coderanch.comSo, did it work? I just snapped it from working (very big) application... BTW, what a coincidence I also use Windows2000 Adv. Server, bcoz my predecessor installed it and why you use it? Also I should confess that Bruce Eckel's TIJ is not very good in SWING: neiter for reference nor for introduction. [This message has been edited by G Vanin ... |
13. simple JFrame problem coderanch.com |
14. JFrame display problem coderanch.com |
15. Window Cascading problem coderanch.comI don't see why you wouldn't use JInternalFrames for this, but you could use multiple JFrames. Just have them all launched from a common class that handles how they are layed out through setBounds() calls. You can also attach ComponentListeners to the JFrames if you want them to move in relation to each other... have the componentMoved() method call something in ... |
16. Problems creating a new frame coderanch.comI have a help menu bar and it has about section and when that is called I want to open another frame and have my name and a logo of sorts. I am having hard time even having it open the frame window once about is selected. Below I have commented out thinking I am on the right track. I am ... |
17. More problems with my two frames coderanch.comIf you initialize it to null, that's not going to prevent a *Null*PointerException... You're going to have to pass a reference to an actual object of the MyPaint class that the paintWindow reference can point to. You can do this through either a constructor parameter, or through some kind of set method (or, if the ColorWindowAdapter is an inner class, you ... |
18. JFrame+jable Problem coderanch.com |
19. frame decoration problem coderanch.com |
20. Mutiple frames + one class = annoying listener problem coderanch.comI have an intro pane that pops up - user clicks one of two buttons; either one pops up 2nd GUI. 2nd GUI has text fields, combobox, etc. Code must be in one class, one file. I initially did this by creating two seperate classes to initialize two separate GUI statments in one file and implementing polling in main for first ... |
21. Splash Window with Prograss bar - PROBLEM coderanch.comThere are many ways to do something like this; heres one possibility: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Splash { public Splash() { JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.setSize(300,300); f.setLocation(200,200); showSplashWindow(f); } private void showSplashWindow(final JFrame f) { final LongTask task = new LongTask(); final JProgressBar pb = new JProgressBar(JProgressBar.HORIZONTAL, 0, task.taskLength); pb.setStringPainted(true); JPanel panel = new JPanel(); ... |
22. I got a problem about JFrame. coderanch.com |
23. JFrame Problem coderanch.comHi... I am running a mapping application that accepts info from the user in a JFrame, and then loads a map according to his preferences in a second JFrame. I wish to load the layers of the map visually layer by layer. This works fine if I dont use two separate JFrames (if I hard code the user info) However... my ... |
24. Frame problem "Java"? coderanch.comIt's good practice to first construct the GUI, and then start doing something with it. You really shouldn't mix the two. The top-level code might look like this: JFrame bigTextArea = new JFrame("Queens College Rooms"); bigTextarea.setLayout(new GridLayout(1,2)); bigTextArea.setDefaultCloseOperation(JFr... bigTextArea.setSize(400,600); JTextArea jta1 = new JTextArea(); bigTextArea.getContentPane().add(jta1); displayResults(jta1, myRooms); // TODO: sort the rooms array here JTextArea jta2 = new JTextArea(); bigTextArea.getContentPane().add(jta2); displayResults(jta2, ... |
25. Jframe problem coderanch.comi have designed a Gui containing main application which has a menu bar which contains a menu item which opens a new frame,now i need to close this frame,keeping the main application intact,i wrote system.exit() on the menu item of the new frame which closes not only this frame but also the main frame application,how can i close the new frame ... |
26. General Frame problem coderanch.com |
27. Problem in JFrame coderanch.comSounds like you've got quite a problem, but I'm going to venture to say that without code, it'll be hard for others to figure out just how to solve it. I'll venture again though, this time to guess that there may be a static issue here (perhaps?). Does any of your code use static fields? Could you be reusing the same ... |
28. JFrame problem coderanch.comwhats wrong with my code, ive got a problem, it shows a blank frame, but when i resize it, the button and the textfield will appear [color=red] import java.awt.*; //import java.awt.event.*; import javax.swing.*; public class Main{ public static void main(String args[]){ JFrame frame = new JFrame(); frame.setVisible(true); frame.setSize(300,300); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel panel = new JPanel(new GridBagLayout()); GridBagConstraints c = new GridBagConstraints(); JButton ... |
29. Internal window setMaximum problem coderanch.comI have one internal frame created in maximized state. A 2nd internal frame is created in normal state. When I click on 2nd frame, the first frame is changed to normal state. Anyone know what might cause this behavior? I have spent hours trying to debug this problem, any pointer will be appreciated. I do not have any other code that ... |
30. PROBLEM in displaying message in chat window coderanch.comHi All Here is my problem. My application is chat application which normally it is doing correctly between client and server with SWING components seperately. Client and Server having two seperate windows which are working fine when they seperately chat to each other. Now problem creating when i m embedded this application into JFrame window. I m using Main window(JFrame by ... |
31. Problem 2 window display coderanch.com |
32. Display problem in JFrame coderanch.com |
33. Having problems with Window and Frame coderanch.comI'm reading a book called Developing Games in Java by David Bracken. I have finished a semesters worth of java in college and have since then been exploring ways to make games out of java. My problem is that I can't seem to get these two classes ( Which are straight out of the book ) to work with each other. ... |
34. problems with JFrame!? go4expert.comimport java.awt.Dimension; import java.awt.FlowLayout; import java.awt.Graphics; import javax.swing.JFrame; public class Game extends JFrame { Board theBoard = new Board(); FileHandler theFileHandler = new FileHandler(theBoard); Graphic Drawspace = new Graphic(theBoard); Game(){ getContentPane().setLayout(new FlowLayout()); getContentPane().add(Drawspace); Drawspace.repaint(); setDefaultCloseOperation(EXIT_ON_CLOSE); pack(); setVisible(true); } public void paint(Graphics g){ paintComponents(g); } public static void main(String[] args) { Game theGame = new Game(); } } |
35. problem with jframes java-forums.orgI would use listeners here such as a ChangeListener or even pass an ActionListener from one class to the other. But before doing that, think whether you truly want two JFrames here. Most Swing apps have only one JFrame, the main frame, and then if other windows are needed they use dialogs such as a JDialog. |
36. Problem-----JFrame java-forums.orgYou will likely need to show code and give greater detail in your problem's description for others to be able to help you. I'm wondering if instead you would benefit by using a CardLayout, but again given the information that's available to us, this is just a guess. When posting code, please be sure to highlight the code after pasting it, ... |
37. setMaximumSize() on a JFrame problem java-forums.orgHi Valhallon I think I understand what your'e trying to get at now. The following is a quote from a different forum. I tried to paste the links to it, but unfortunately java-forums.org doesn't allow me to post hyperlinks until I have 20 posts or greater. Try to Google: Java Programming - Re: JFrame maximum size ...and you will find the ... |
38. Tiny Problem with JFrame java-forums.orgHi I am writing a simple program in java which is simply: an panel with one button on it, when you drag the mouse over the panel, the button should follow the mouse ( it is very simple ), the program is working fine, but when I minimize the window or maximize it, the button jumps back to its original location ... |
39. Frame problem java-forums.orgHi, I hope You all used microsoft calculator i Windows Vista or Windows 7. When You click on "view" option in menu bar and under worksheets when you click any option, the Frame expands. I want to know that will i able to do that with java. If yes, please suggest how will i do it. |
40. JFrame problem java-forums.orgpublic class GameTest { /** * Creates a new instance of GameTest */ public GameTest() { } public void PlayAGame() { JFrame myFrame = new JFrame("Beginner Mode:"); BeginnerMode panel = new BeginnerMode(); myFrame.setSize(256,256); myFrame.setDefaultCloseOperation(myFrame.EXIT_ON_CLOSE); myFrame.getContentPane().add(panel); panel.PlayAGame(); myFrame.pack(); myFrame.setVisible(true); } public static void main(String ar[]){ GameTest myGame = new GameTest(); myGame.PlayAGame(); } } |
41. Frame problems java-forums.org |
42. netbeans jframe access problem java-forums.orgYour other thread has been deleted. Regarding your question, you have one ojbect access other objects in Swing same way as any other Java program: One object needs a reference to the other, often held in a variable in order to be able to call methods on the other object. So for instance, Java Code: class JFrame1 extends JFrame { public ... |
43. Problem with two Jframes forums.oracle.comHi. I am trying to create a small GUI program. I have a main class called GUI that is the main GUI. I want to have another JFrame class called About that displays info about the program and the users system. When I close the About window the Main GUI closes too. How do I fix this? I am new to ... |
44. Simple JFrame Problem forums.oracle.comTree tree = new Tree(); JScrollPane j = new JScrollPane(); j.setLayout(null); j = tree.genTree(text.getText()); //frame.dispose(); //initialise(); frame.getContentPane().add(j); j.invalidate(); j.validate(); j.repaint(); // can now see the scrollpane, but non of the text fields on it } } public JScrollPane genTree(String query){ // Parses query and creates RA tree JScrollPane scroll = new JScrollPane(); scroll.setLayout(null); scroll = drawTree(); |
45. problem with saparate JFrame window. forums.oracle.com |
46. Newbie Problem with JFrame behaviour forums.oracle.com |
47. Jframe problem with java 3d? forums.oracle.com |
48. Problem displaying CheckboxGroup on JFrame forums.oracle.comI was recently assigned the task of creating exams. I am trying to create a CheckboxGroup in a class that was passed the Graphics2D tool. This code compiles with no errors when I call it's method: setLayout(new GridLayout(1, 5)); CheckboxGroup cbg = new CheckboxGroup(); add(new Checkbox("Never", cbg, false)); add(new Checkbox("Almost Never", cbg, false)); add(new Checkbox("Sometimes", cbg, false)); add(new Checkbox("Almost All The ... |
49. Jframe problems forums.oracle.com |
50. Turkish Character Problem with Swing Forms forums.oracle.com |
51. Problem with insets and placement within a JFrame. forums.oracle.comI have written some code that actively renders (at about 100 fps) to a JPanel contained within a JFrame. The size of the frame and the size of the panel are both set to 1000 by 700 (odd i know..) Everything seems to work fine and I have encountered insets before so when I am rendering I have been adjusting accordingly. ... |
52. JFrame problem help me forums.oracle.com |
53. Jframe's window state problem forums.oracle.comHi, I have created an desktop application in java6 which also using system tray component. When the application is closed or maximized, it actually does not close, it run in background. We made the frame visible false. There is an option on system tray icon to open the frame. I always need the frame opened in Maximize state when the open ... |
54. Problem in displaying panals on Jframe forums.oracle.comHi I am using Nebeans 6.0 to create a desktop based application. Thr are multiple panels in the application. I want to specify the same size for each panel but since i am working in design view of Netbeans to make GUI, i have not been able to do so. Also I want to align the panel to be aligned to ... |
55. JFrame problem forums.oracle.comCan someone pls tell me if there is a way in Java of when calling a textfile you can display it in a JFrame instead of in a JOptionPane? The code is in the first post, and in that piece of code, java opens the textfile in a JOptionPane, but instead i want it to be displayed in a JFrame. Thanks. ... |
56. New JFrame problem forums.oracle.com |
57. JFrame problems forums.oracle.com |
58. JFrame problem forums.oracle.com |
59. JFrame problem forums.oracle.comIf it's opening a whole new window, then my guess is that you're creating a new JFrame object each time, in some of the code that you haven't posted. Sharing only selected snippets of code is almost never helpful, because doing so means that you're making a judgement about where the problem lies -- and if you were right in that ... |
60. Problems with images in JFrames forums.oracle.com |
61. Problem with JFrame forums.oracle.comI have a program that Produces a Pane with a JList, A JLabel and two JButtons on it. It's in a while loop, the problem is that the program won't pause and wait for me to make a selection, it just keeps refreshing the pane. How do i make it pause like JOptionPanes do? |
62. Display problem when JFrame is not in maximised form... forums.oracle.comHi ... I am using two JFrames in my app. when I click on Open Button from my JFrame1 It opens JFrame2 which is of Dimension [400,400] problem is all components are not visible for first time untill I maximise the frame window and minimise it ....JFrame to is Set to visible(true)...Any suggessions are welcome....Thanx's in Advance.. |
63. Problem with JFrames forums.oracle.com |
64. JFrame problem forums.oracle.com |
65. JFrame problem forums.oracle.comWell ... I have this JFrame ,, that have a JButton .. used to open a new JFrame and close the first one. The new JFrame have some graphics on it ... but the 2nd frame doesn't work .. I'm sure that the problem is something on the first frame ... because to open the new frame and load teh graphics ... |
66. problem with using JFrame forums.oracle.combut here the name is always initilized to null even though i am entering some text int the fame window here. I think even before i am entering some text in the my window the second line where name is initilized is executed. My question is how to stop the rest of the code until a frame window is returns the ... |