I was wondering if anyone can shed any light on the following problem I've been having. I finally stumbled upon the GridBagLayout manager and now do not need to suffer stretched components being displayed on my screen, but the problem that I'm having is that the GridBagLayout is centering the components on the screen when I want them placed in the top left hand corner like this ascii diagram shows:

Code:
I currently have the following showing:
 ------------------
|                  |
|	           |
|      Label1	   |
|      Label2      |
|                  |
|	           |
 ------------------

rather than:

 ------------------
|Label1            |
|Label2	           |
|       	   |
|                  |
|                  |
|	           |
 ------------------
I'm not sure how to change this as I cannot find any methods or public vars that I can use/change to alter where the components are placed. And yes, I have searched through the java api extensively and searched google and the sun java site.

Thanks,

ac