0
votes
1answer
12 views
wxPython file dialog error: missing “|” in the wildcard string!
I am on Windows7, using Python 2.6 and wxPython 2.8.10.1. I am trying to get this Open File dialog to work but am running into a weird error. This looks like a valid wildcard string to me, but …
0
votes
1answer
25 views
wxPython - DatePickerCtrl seems to ignore SetValue()
I'm trying to pre-populate a wxPython DatePicker with a value using the following code:
month, day, year = runData[2][0:8].split('/')
displayDate = wx.DateTimeFromDMY(int(day), int(month) - 1, …
0
votes
2answers
32 views
wxPython progress bar
I can't use wx.ProgressDialog because I need to add extra contents to the dialog box (a pause button and information about what is currently being processed). Is there a control for just the progress …
0
votes
1answer
30 views
Need to add httpd support to this wxPython code.
I need to add httpd support to this sample wxpython code.
It parses the url and display different images.
What's the easiest way to do this?
import wx
a = wx.PySimpleApp()
wximg = …
0
votes
3answers
41 views
wxPython - How to get the ID of a widget when you passed in -1?
I'm doing a little wxPython work today and I've got this piece of code (I've stripped out the irrelevant parts):
def CreateRowOne(self, pan):
hbox1 = wx.BoxSizer(wx.HORIZONTAL)
…
0
votes
1answer
34 views
Saving wx widget contents to a file
Hi
I have created different shapes like circle/rect etc in my program using BufferedPaintDC on event. Now i want to save the file as I click the saveas button in the menu option. For that I am using …
0
votes
1answer
29 views
WxPython, Windows Vista 64-bit, and failure
I have Windows Vista 64-bit SP2. I am trying to use wxPython for GUI development with Python, because all my research pointed to that as the way to go. I have downloaded and installed the win64 …
1
vote
1answer
41 views
Highlight a row in wxGrid (with wxPython) when a cell in that row changes programatically
How do I highlight a row after an update of the underlying PyGridTableBase? I can't seem to get my head around it.
I am able to create alternate row highlighting lines when the table is first drawn:
…
1
vote
1answer
38 views
Getting value of TextCtrl from a different wxPanel
I was trying to get my first wxWindow application to work and I ran into following difficulty:
I create wxPanel and add a wxNotebook object to it. Then I add a page to notebook created from another …
1
vote
6answers
82 views
Need a Python package suitable for visualizing queue simulations
I am working on a simulation in Queueing Theory, within a wxPython GUI. (Project link.) What would be a good tool for visualizing the simulations? The visualization should consist of simple objects, …
0
votes
1answer
43 views
Python2.6 Backtrack/Ubuntu wxPython
I wrote a python app and it needs python2.6. I'm trying to get it to run in Backtrack 4 which is a pen-testing linux distro based on debian/ubuntu. I'v managed to install python2.6 along side of …
0
votes
1answer
52 views
wxPython. Create a panel with four static sized boxes.
I'm trying to create a panel, with four boxes containing some data. These four boxes should have a predefined static size. What I have so far is four boxes that is overlapping to some extent.
Any …
1
vote
2answers
77 views
Where can I find good tutorials and guides on wxPython and wxGlade?
Just out of curiosity, aside from their respective sites, have any of you guys found a better resource for figuring out wxPython/wxGlade?
I figured I'd ask while I'm chewing on something else, I plan …
1
vote
1answer
88 views
Displaying OpenCV iplimage data structures with wxPython
Here is my current code (language is Python):
newFrameImage = cv.QueryFrame(webcam)
newFrameImageFile = cv.SaveImage("temp.jpg",newFrameImage)
wxImage = wx.Image("temp.jpg", …
1
vote
1answer
46 views
Continuously redraw wxPython element
Hi, I have a chat client that continuously polls a server and fetches new messages.
From my def __init__() I have:
wx.CallAfter(self.pollServer)
Which is defined:
def pollServer(self):
t = …
