Re: Simple JToolBar Problem
If you want help, you'll have to provide an SSCCE (not your whole program, but something we can copy and paste to run) that demonstrates exactly what you're talking about. Otherwise we're just guessing.
Recommended reading: How to Use Tool Bars (The Java™ Tutorials > Creating a GUI With JFC/Swing > Using Swing Components)
Re: Simple JToolBar Problem
Apologies, messing around with GridLayout, I managed to fix my problem. Was a simple one line:
toolbar2.setLayout(new GridLayout(3,1));