[java] Components problems in awt

Started by
0 comments, last by CaptainJester 19 years ago
I use the simplest way of putting java.awt.Label and java.awt.Button components in an java.awt.Frame: Label l=new Label("Bla bla, bla"); f.add(l);//f is my frame The problem is, that when I run the program, the , is in the middle(on the y axis) of the line. What can I do?
-----------------------------------------Everyboddy need someboddy!
Advertisement
You need to change the LayoutManager. This is basic to GUI construction. You should do the GUI tutorial at Sun's website.

The Java Tutorial: http://java.sun.com/docs/books/tutorial/index.html (includes GUI construction)
Effective Layout Management: http://java.sun.com/developer/onlineTraining/GUI/AWTLayoutMgr/index.html
Other GUI tutorials: http://java.sun.com/developer/onlineTraining/GUI/
"None of us learn in a vacuum; we all stand on the shoulders of giants such as Wirth and Knuth and thousands of others. Lend your shoulders to building the future!" - Michael Abrash[JavaGaming.org][The Java Tutorial][Slick][LWJGL][LWJGL Tutorials for NeHe][LWJGL Wiki][jMonkey Engine]

This topic is closed to new replies.

Advertisement