[wxPython] Radiobox type submenus.

after applying this patch to yours demo i'v got same results on w2k and
linux.

234d233
< self.SetScrollbars(20, 20, (size[0]+19)/20, (size[1]+19)/20)
241a241
> self.SetScrollbars(20, 20, (size[0]+19)/20, (size[1]+19)/20)

Hi Mac, after applying the above change in notebook_test.py , I'm getting
the same error in w2k machine.
Anyhow I was attaching the new sizer with the panel in line no 238 to 240.
I doesn't feel any effective change as you said.

"python.exe has generated errors and will be closed by windows....

Did you get the above error dialog in w2k, but not in Linux?
I'm using wxpython - 2.3.0 with python 2.0.1 in Solaris &
wxpython - 2.3.1 with python 2.0 in w2k.

[...]

"python.exe has generated errors and will be closed by windows....

Did you get the above error dialog in w2k, but not in Linux?

Yes, with your code python bombs while calculating window size - called from SetScrollbars. SetSizer must be called first.

Grzegorz Makarewicz