0
votes
11answers
156 views
Cross-Platform Programming Language with a decent gui toolkit?
For the program idea I have, it requires that the software be written in one binary that is executeable by all major desktop platforms, meaning it needs an interpreted language or …
0
votes
0answers
50 views
better version of fakemodal?
I found a code snippet (http://aspn.activestate.com/ASPN/Mail/Message/wxpython-users/3695248) for a "fakemodal" dialog. This works for what I am doing, but I would like to make it …
0
votes
1answer
25 views
Using the same handler for multiple wx.TextCtrls?
I'm having a bit of trouble with a panel that has two wxPython TextCtrls in it. I want either an EVT_CHAR or EVT_KEY_UP handler bound to both controls, and I want to be able to tel …
0
votes
4answers
118 views
How to check which part of app is consuming CPU?
I have a wxPython app which has many worker threads, idle event cycles, and many other such event handling code which can consume CPU, for now when app is not being interacted with …
0
votes
2answers
72 views
Close Python when Parent is closed
I have a Python program (PP) that loads another Program(AP) via COM, gets its window handle and sets it to be the PP parent.
This works pretty well except that I can't control tha …
1
vote
2answers
136 views
wxpython — threads and window events
I have a wxPython application (http://www.OpenSTV.org) that counts ballots using methods that have multiple rounds. I'd like to do two things:
(1) For a large number of ballots, …
2
votes
1answer
59 views
Displaying integers in a wxpython listctrl
I have a wxPython ListCtrl with five columns. Four of these hold strings, the last one has integer values. I have been storing these as strings (i.e. '4', '17', etc.). However, now …
0
votes
1answer
144 views
Set Max Width for Frame with ScrolledWindow in wxPython
I created a Frame object and I want to limit the width it can expand to. The only window in the frame is a ScrolledWindow object and that contains all other children. I have a lot …
0
votes
2answers
70 views
wx.TextCtrl.LoadFile()
I am trying to display search result data quickly. I have all absolute file paths for files on my network drive(s) in a single, ~50MB text file. The python script makes a single p …
2
votes
2answers
62 views
wxpython drag&drop focus problem
Hi,
I'd like to implement drag&drop in wxPython that works in similar way that in WordPad/Eclipse etc. I mean the following:
when something is being dropped to WordPad, WordPa …
1
vote
2answers
180 views
How to create hover effect on StaticBitmap in wxpython?
Hi,
I want to create hover effect on StaticBitmap - If the cursor of mouse is over the the bitmap, shows one image, if not, shows second image. It's trivial program (works perfect …
2
votes
2answers
85 views
How do I scroll a wxPython wx.html.HtmlWindow back down to where it was when the user clicked a link?
I am using a wxPython wx.html.HtmlWindow to display part of my interface. The user can scroll down a list of links in a window smaller than the list. When they click on a link, I n …
1
vote
5answers
474 views
How do I debug a py2exe ‘application failed to initialize properly’ error?
I'm very new to Python in general, but I made an app in Python 2.6 / wxPython 2.8 that works perfectly when I run it through Python. But I wanted to go a step further and be able t …
3
votes
3answers
538 views
py2exe: Compiled Python Windows Application won’t run because of DLL
I will confess I'm very new to Python and I don't really know what I'm doing yet. Recently I created a very small Windows application using Python 2.6.2 and wxPython 2.8. And it wo …
1
vote
1answer
70 views
Hiding Vertical Scrollbar in wx.TextCtrl
I have a wx.TextCtrl that I am using to represent a display with a fixed number of character rows and columns. I would like to hide the vertical scrollbar that is displayed to the …
