2
votes
1answer
73 views
Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame?
It seems that this is specific to windows, here is an example that reproduces the effect:
import wx
def makegrid(window):
grid = wx.GridSizer(24, 10, 1, 1)
window.SetSizer …
2
votes
Create an icon in memory with win32 in python
You can use wxPython for this.
from wx import EmptyIcon
icon = EmptyIcon()
icon.CopyFromBitmap(your_wxBitmap)
The …
2
votes
The OLE way of doing drag&drop in wxPython
Since you can't use one of the standard data formats to store references to python objects I would recommend y …
7
votes
Writing to the serial port in Vista from Python
pyserial does the trick, you'll need python extensions f …
1
vote
Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame?
I got a reply on the wxPython-users mailing list, the problem can be fixed by cal …
1
vote
What’s the state-of-the-art in Python programming in Windows?
There are no set standards in these matters, and for good reasons:
there is a fair amount of good choice
different people are productive with different tools
differe …
