Tagged Questions
0
votes
1answer
21 views
How to make wxPython class browser
How do I implement a class browser in wxPython? Should I scan the whole code, or there is a function for this in wxPython?
0
votes
0answers
9 views
wxPython StyledTextCtrl change scrolling speed
How do I change scrolling speed in wxStyledTextCtrl? I didn't found any functions to to this nor in wxStyledTextCtrl nor wxTextCtrl
0
votes
1answer
6 views
Pin different panels to main panel using wxpython?
I have an option 'Histogram' in the menu bar of my main panel and whenever it is clicked a function Hist(), will be called which plots a histogram in a new panel. There might be multiple histograms ...
0
votes
1answer
23 views
wxPython not responding
I'm new to python and now I want to try wxpython, but I can't continue even at the very beginning.
Following the toturial,
import wx
app = wx.App(False)
frame = wx.Frame(None, wx.ID_ANY, "Hello ...
0
votes
1answer
20 views
How to set best column width in fastest way in wxpython grid?
I have a notebook with 5 pages, grid objects on each page. Each grid has 3000 rows and 4000 columns. I add employee name and surnames in first 2 columns in each page. I want to make sure all columns ...
0
votes
0answers
22 views
Embed NavigationToolbar in separate frame than FigureCanvas with wxPython
I would like to add the matplotlib.backends.backends_wx.NavigationToolbar2Wx to a GUI I'm developing, but I would rather not have it on the FigureCanvas, since it would force my layout to be rather ...
0
votes
1answer
17 views
Writing a text on the user interface using wxPython
Taking the following code: http://eli.thegreenplace.net/files/prog_code/wx_mpl_dynamic_graph.py.txt which is actually the second code example that we can find on
...
0
votes
1answer
23 views
wxPython Update Progress Dialog from separate thread
I'm attempting to run a progress dialog that isn't simply on a timer but updates based on the status of the files that are uploading to the server. I don't care how the progress bar is visually ...
1
vote
1answer
13 views
What does wxMessageBox return in python?
I'm looking for simple wx.MessageBox return value example. I've seen some basic examples and they look a lot like this. So far I have:
dlg = wx.MessageBox( 'What do you choose?, 'Test Dialog', ...
-3
votes
1answer
27 views
Binary and WxPython
So I know WxPython and Binary(I spent all summer learning python). I was wondering if I could some example code of how I could use an input dialog and convert into binary to number or number to ...
1
vote
2answers
26 views
How to export wxpython gui text in excel file?
I wrote code which takes text data from sql server and puts it in the wxpython static text. Now I want to know is there some menu event widgets which I can use to export my text in xlsx file? Or can ...
0
votes
0answers
22 views
Strange bitmap update behavior in wxPython
I am trying to write an image control point selector function like MATLAB's cpselect (http://www.mathworks.com/help/images/ref/cpselect.html) using wxPython. However, I have run into strange behavior ...
0
votes
1answer
19 views
How should I display an XML document in a wxPython UI?
I want to read/search in an XML document in a window of a wxPython application.
A lot of text editors will highlight the content and maybe have support for
block and unblock of XML elements.
Is ...
0
votes
1answer
19 views
wxPython: program quits but window remaines not responding after calling sys.exit
I'm writing a program that displays a specific picture in the current directory. Before creating a wx.Image object, it checks whether the picture exists. If the picture doesn't exist, it'll pop up a ...
0
votes
1answer
21 views
How can I change label of statictext without naming it
Following is my code which creates statictext without names.
Is there a way to change label in this code?
import wx
class Mainframe(wx.Frame):
def __init__(self, parent):
...