Hi
I am converting python2 era package to modern python3. I need to find out how GridSizer and SetSelection worked. Following codes needs to be converted.
panel = wx.GridSizer(3, 3)
self.RefType = wx.ListBox(...
self.RefType.SetSelection(0, True)
Both work under python2.
The errors with python3 I get are:
For GridSizer: not enough arguments
SetSelection: too many arguments
Is it possible to access old wxpython documents?
Thanks in advance.
regards