Results 1 to 4 of 4
Thread: java window
- 04-07-2011, 04:19 PM #1
Member
- Join Date
- Mar 2011
- Posts
- 45
- Rep Power
- 0
java window
What's the matter with this code?
I want to get something like on the attached picture :S
Java Code:import java.awt.Dimension; import java.awt.GridLayout; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JTextArea; public class Bounce { public static void main(String[] args) { JFrame frame = new JFrame(); frame.setSize(new Dimension(600, 350)); frame.setResizable(false); frame.setTitle(new String("test")); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JPanel panel = new JPanel(); panel.setPreferredSize(new Dimension(600, 300)); panel.setLayout(new GridLayout(0,2,50,50)); JTextArea text1 = new JTextArea(); JTextArea text2 = new JTextArea(); panel.add(text1); panel.add(text2); frame.getContentPane().add(panel); frame.setVisible(true); } }
- 04-07-2011, 04:23 PM #2
You tell us. What does the code do instead?
How to Ask Questions the Smart Way
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
- 04-07-2011, 04:23 PM #3
Member
- Join Date
- Jan 2011
- Location
- Gainesville, FL
- Posts
- 45
- Rep Power
- 0
And what's the problem? It works fine for me.
- 04-07-2011, 04:31 PM #4
Member
- Join Date
- Mar 2011
- Posts
- 45
- Rep Power
- 0
Similar Threads
-
Need to pass a value from a parent window to a pop up or child window
By blackpanther in forum Advanced JavaReplies: 4Last Post: 01-10-2010, 07:48 AM -
change url in parent window from child window
By rakesh_n_mehta in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 07-09-2009, 12:17 PM -
how can i move one frame window to another window
By santhosh_el in forum AWT / SwingReplies: 8Last Post: 06-10-2009, 03:36 PM -
how we get popup window in java
By baserohit in forum Advanced JavaReplies: 1Last Post: 03-22-2008, 04:39 AM -
Locking window in java
By coco in forum AWT / SwingReplies: 1Last Post: 07-31-2007, 07:21 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks