Tagged Questions
0
votes
0answers
4 views
Python: Set Cursor in TextBox based upon Radiobox Selection
I have a radiobox and a textctrl, I would like to have the cursor in the textctrl based upon the radiobox selection. I tried to use setfocus for textctrl but it doesn't work. I am using wxpython to ...
3
votes
5answers
312 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
0answers
12 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
1answer
17 views
Python: Enable Radiobox based upon Checkbox Selection
I have a simple python GUI developed using WXPython. I have a checkbox1, checkbox2 and radiobox1. Based upon the Checkbox2 selection, I want the radiobox1 to be enabled or disabled. For example if ...
0
votes
1answer
47 views
How Do I Set the Class Name of a Python wxWidgets Application Window?
I need to set the class name of a Python wxWidgets application window on Linux (Ubuntu). By default it is set to "python."
I have tried calling the SetAppName() and SetClassName() methods on the app ...
0
votes
2answers
17 views
Can I access attributes of my wxpython frame from the IDLE Console?
Let's say I have a frame
class Frame(wx.Frame):
def __init__(self, *args, **kwargs):
super(Frame, self).__init__(*args, **kwargs)
self.InitUI()
self.SetSize((380,340))
self.Show()
...
0
votes
1answer
17 views
wxpython textctrl disappears while processing data
I have a really weird issue that I have been trying to solve for some time now without any luck.
My program consists of a main frame, a menu bar, underneath the menu bar resides a text control in ...
0
votes
4answers
28 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
25 views
Sort items using listctrl in Python and wxpython
I am trying to sort items in a 3 column list but it's not quite working. I have it set up to populate a "table". When I first run the program, it sorts the columns no problem. However, I have an ...
0
votes
1answer
24 views
wx.pannel with a menubar
I'm wondering if someone could show me how to add a menubar to the code provided. My problem is I cant find any docs or anything on adding a menubar to wx.panel. Is this even possible? if you could ...
0
votes
1answer
11 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
12 views
Updating treectrl in wxPython
How can I alter or add items in a treectrl once it has been displayed.
I've created a simple example, how would I add an extra item (E.g. Bananas) after init .
Changing it before init exits works but ...
0
votes
1answer
18 views
wxPython button on each frame of notepad that closes application
I have a wxpython class Neoprobe which has 3 classes/notebook pages
class Neoprobe(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, title="Neoprobe QC ...
0
votes
0answers
14 views
Fail to choose multiple files in windows XP when using wxPython wxfiledialog
I am currently working on a tools which need to select thousands files as resource.
I used wxfiledialog to choose multiple files.
After packing the program with Py2exe(I also tried cxfreeze), it ...
0
votes
1answer
19 views
Date input field format
I have TextCtrl field in which user should enter the date in format dd.mm.yyyy
I wanna force him to do it in that format, so is it possible to have something like this
* * . * * . * * * * in text ...