I\'ve found some examples scattered around the internet involving getting an image or a textbox to display scroll bars, but they all involve a program that basically display
Figures. Soon as I post I realize what's wrong.
Because innerPanel has a null Layout it needs to have its preferred size explicitly declared.
innerPanel.setPreferredSize(new Dimension(200,600));
fixes it.