I've found a strange behavior in method GetPosition() of wxWindow class
( and derived ).
On windows, if you create a window object
frame = wx.Frame(None, -1, "TESTING")
and you set the position to:
frame.SetPosition( (300, 45000) )
If you call method GetPosition, the result will be:
frame.GetPosition()
32767 is the integer limit. Why GetPosition() returns this value??? and>>(300, 32767)
why on Unix Platform this problem was not found??
thx very much!
bye