Tagged Questions
0
votes
0answers
5 views
How to delete a specific row in wxListCtrl after sorting?
I'm using wx.ListCtrl for live report in my app, and there will be continuous status updating including inserting a new row when a task starts and deleting related rows when the tasks end. Since the ...
0
votes
1answer
22 views
Open new window on button clicked and web browser
I have here a script. First, what i want is every time I logged in and click the connect button, a new window should appear. And second, the new window should be a web browser which is written in ...
0
votes
1answer
25 views
wxpython, showing modal dialog one by one
I have multi threaded wxpython app and main GUI thread receives notification from other threads to show it under modal dialog box. I want some kind of scheduling/queuing so dialog should appear one ...
0
votes
4answers
34 views
How to either sort a wxsizer or remove items without destroying them?
I have a wxpython grid sizer that is sizing sublists of bitmap buttons. The master list I would like to create just once because creating these buttons takes a considerable amount of time, and thus I ...
0
votes
1answer
15 views
wxpython custom text entry dialog
I am trying to do a text entry dialog, but I don´t want to use the built-in method. I´m doing pretty well , the only problem is that is the buttons are displaying perfectly, but the text entry is ...
0
votes
1answer
23 views
Set wx.Slider Limit
Is there any way limit a wxpython wx.Slider's control to a point in the middle of the slider? I know I can set the min and max values of the slider, but I want to set up an invisible max or min in the ...
1
vote
1answer
47 views
multiprocessing with wxPython is unresponsive
I'm using wxPython as the front end for a data acquistion system, the backend using PyDAQmx to interface to a national instruments card.
When the loop is called to collect the data, obviously the gui ...
-2
votes
1answer
21 views
Cannot Find WXPython
When I run code all I get is a cannot import wx python. I put wx python in C:\Put a directory on PYTHONPATH here\Lib\site-packages . That does not seem to work. Any Suggestions?
0
votes
0answers
16 views
OSX and wxPython: Draw on desktop layer
How can I use wxPython to draw graphics on the desktop layer in Mac OS X?
Context:
My goal is to create an application that can output graphics right above the wallpaper, such that activating "Show ...
0
votes
1answer
23 views
wxPython Transparent Frame - Display Text
I have followed the tutorial here: Transparent Frames
How can I make it so only the text from TextCtrl has 100% opacity while the rest of the window is invisible? What i mean is, I want an invisible ...
0
votes
1answer
15 views
wxpython use the same static text twice in FlexGridSizer.AddMany
I would like to duplicate column headings in my first python GUI. I have tried the following
bfont = wx.Font(10,wx.DEFAULT,wx.NORMAL,wx.BOLD)
angle = wx.StaticText(panel,label="Angle")
...
3
votes
5answers
335 views
How to create a custom gui design for a python program?
I want to create a GUI for a python program with a custom design, I have a mockup in photoshop and I'm looking for a library that supports theming or any other library that can do the job.
My GUI ...
0
votes
1answer
19 views
wx SplashScreen doesn't work
I've used the sample code from the wiki but it just doesn't work for me, I see nothing. What am I doing wrong?
import wx
app = wx.App()
aBitmap = wx.Image(name = "wxPyWiki.jpg").ConvertToBitmap()
...
0
votes
1answer
17 views
Unbind default button behavior in wxPython
I am writing an interface where I'd like to have a user click a button, then capture his next keystroke.
I can currently capture all the keys on the keyboard, except for those like tab or the arrow ...
3
votes
2answers
109 views
Python GUI programming using drag and drop, also incorporating stdout redirect
Hi to everyone & thanks in advance for any help given!
I'm new to programming & new to python. I've just developed my first script, it prosesses file, but at the moment only from the ...