Hey everyone!
I am trying to build an application, but I'm getting hung up on the layout manager to use to get the program 'looking right.' Here's what it should have:
The window is 700px by 600px. I want a panel to occupy, starting at 0, 0 coords, 400px by 600px. Then, starting at 405, 0 coords, an area 295px by 300px. The last section, will start at 405, 305 coords, and be 295px by 295px. Here's a crappy ascii drawing of what it should look like.
___________________
|*********|******|
|*********|******|
|*********|******|
|*********|_______|
|*********|******|
|*********|******|
|*********|******|
|__________|_______|
Ingore the asterisks. They're there only for spacing purposes.

)
I've tried using GridBagLayout and GridBagConstraints, but for some reason, it just plops all of the components right in the center, in an area about 25px by 25px.
Could someone give me some advice and lead me in the right direction? It is GREATLY appreciated, as I've tried all I know to do. As you can probably tell, I'm still new to JFC/Swing/AWT. Thanks again!

)
[ January 04, 2003: Message edited by: Martin Clifford ]
[ January 04, 2003: Message edited by: Martin Clifford ]
[ January 04, 2003: Message edited by: Martin Clifford ]