FlowLayout example
public class TestFlowLayout extends Frame {
public static void main(String[] args) {
TestFlowLayout tfl = new TestFlowLayout();
new FlowLayout(FlowLayout.LEFT,10,10));
String spaces = ""; // to make each button bigger
for(int i=1; i<=9; i++) {
tfl.add(new Button("Button Nr." + i + spaces));