Is it possible to load an icon from an exe-file resource on Windows?
yep - but you'd need to use the win32api module (ie not wxPython itself).
I can't recall the function off the top of my head, but its something obvious like LoadResource...
HTH
Ellers
> Is it possible to load an icon from an exe-file resource on Windows?
yep - but you'd need to use the win32api module (ie not wxPython itself).
I can't recall the function off the top of my head, but its something obvious like LoadResource...
Sure, but I was hoping that I could somehow make use of
wxIcon.LoadFile(..., wxBITMAP_TYPE_ICO_RESOURCE).
Thomas