jcmeyer 0 Light Poster

I am unable to get scrollbars to work in a wizard I have created.

I have a BoxSizer on one of the pages in my wizard. The contents of the BoxSizer are larger than the wizard window so I need to scroll vertically to see the rest of the contents.

I can add scrollbars to the wizard page by using self.SetScrollbar(wx.VERTICAL,0,60,50) inside my wizard class. However, once I run the application the scrollbars appear but they do not work.

What am I doing wrong?