How to Change the Layout?

Okay, I am trying to make a few calculators and I am figuring out that all of my TextFields and things end up on 1 row. How can I change this so that each TextField go on a different row or, make them centered in the middle of the screen?
[245 byte] By [Zacha] at [2007-11-27 4:27:51]
# 1
yourContainerName.setLayout(whatever one you want);
boblettoj99a at 2007-7-12 9:36:32 > top of Java-index,Java Essentials,New To Java...
# 2
http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.htmlDo you see any there that might be used to make your grid?
hunter9000a at 2007-7-12 9:36:32 > top of Java-index,Java Essentials,New To Java...
# 3
Understand that you will probably need 1 or more nested JPanels each w/ their own layouts for this to work well. Once you play with them, you'll get the hang of it.
petes1234a at 2007-7-12 9:36:32 > top of Java-index,Java Essentials,New To Java...