while, you can use other library's to make GUI design easier, you can still get the results that you want by using the standard AWT librarys...
Here, what I did was first fix the GridLayout to have just one column, second was to create a new Panel to add our button so that the button does not stretch out to fill out the bottom of the
applet...
And last, since we already are adding Panel p2 to Panel p1, there is no need to add it to p3. The reason is that when p2 to p3, then adding p2 to p1, p2 get removed from p3 since it can't be two places at once...
So while a little difficult, once you get to know it, it get's easier...
I myself am still learning... but am having fun doing it...
