I have been wanting to figure this out. I used a couple of your code snippets below and I can get a scroll bar. When I scroll down, it doesn't scroll the panel down. The only thing that happens is that the scroll bar moves up and down. Any thoughts?
On Thu, Aug 21, 2008 at 8:36 AM, Gandalf <[EMAIL PROTECTED]> wrote: > On Aug 21, 2:42 pm, Gandalf <[EMAIL PROTECTED]> wrote: > > Hi every one. I'm not sure whether my framework is relevant so i will > > mention it any way. > > windows XP > > python 2.5.2 > > wx 2.8 something... > > > > I'm trying to scroll a panel element and it doesn't work. (maybe this > > function doesn't supposed to scroll element like this) > > > > this is the relevant code: > > wx.Frame.__init__(self, parent, id, title, size=(500, 400)) > > panel1=wx.Panel(self, -1, style=wx.SIMPLE_BORDER, size=(400, 460)); > > panel1.SetBackgroundColour('#cce8fa') > > sw = wx.ScrolledWindow(panel1) > > > > sw.SetScrollbars(20,20,55,40) > > > > if any one know how should i do it I will be extremely thankful > > > > thanks! > > > OK I solved it. > > if any one ever bump the same problem > > panel1.SetScrollbar(wx.VERTICAL, 0, 6, 50); > -- > http://mail.python.org/mailman/listinfo/python-list >
-- http://mail.python.org/mailman/listinfo/python-list