Hi,
I've found this code snippit around the web, but when I try to install it in my program, the program fails.
class MyFrame(wx.Frame):
def __init__(self, parent, id, title):
wx.Frame.__init__(self, parent, id, title)
self.Bind(wx.EVT_MOVE, self.OnMove)...