Tagged Questions
0
votes
1answer
8 views
obtaining the sum of items in one wx listctrl column
So I have this listctrl here
self.list2 = wx.ListCtrl( self, wx.ID_ANY, wx.DefaultPosition, wx.Size( -1,100 ), wx.LC_REPORT|wx.LC_SORT_DESCENDING )
self.list2.InsertColumn(0,"Order ID")
...
1
vote
1answer
9 views
wx.Grid and wx.StockCursor
I've created wx.Grid widget inside my frame and I want to change my type of cursor if the user is using the grid widget. I've managed to do that with wx.StockCursor and .SetCursor methods but my ...
0
votes
1answer
11 views
Showing a table after rotating by 90 in wx-python
I have to display a table with multiple columns but only a single row. Displaying it in the normal way using wxGrid doesnt look appealing at all and makes it hard for the user to read. I want to know ...
0
votes
1answer
17 views
wxPython - Optional Text Boxes
How can I add a
TextCtrl
area that will allow input only if a checkbox is ticked? Otherwise the TextCtrl area will be ignored.
0
votes
1answer
22 views
Python attempting to create a simple gui, getting “AttributeError: 'MainMenu' object has no attribute 'intro_screen'”
complete newbie here to Python as I only started learning the language a few days ago (with no programming experience beforehand).
I'm basically bashing my skull against the desk here, trying to ...
0
votes
1answer
12 views
Difficulty with writing to a document in Python + wxPython
I'm trying to make a Python GUI. A simple test that will see if I can get a user's input in a text box, then have them click a "Create" button and have it write to a file.
Here is my current code:
...
0
votes
1answer
13 views
updating either a static text or textctrl *read only* upon selection of an item in a choice box
Basically, what I'm trying to do is get either a static label or read only textctrl to change it's price accordingly with the item selected in the choice widget. the lists for the Item_ID's and ...
1
vote
0answers
14 views
wxPython ListCtrl copy to clipboard
I am using a ListCtrl as a log file viewer so that I can hide "debug" type of columns from the average user. I would like to be able to select multiple cells just like you can do in many other ...
0
votes
1answer
21 views
wx Python Gui start up too slow?
the code below is quite incomplete. but I want to check some stuff for errors.... thing is when I compile it.... nothing happens after it starts up. anything I did wrong here? I also check the task ...
0
votes
1answer
12 views
wxPython childframes interaction
I've created a simple program that consists from one mainframe(Frame) and two childframes (ChildFrame1 and ChildFrame2). Mainframe has two buttons one will check if the ChildFrame1 is already created ...
1
vote
0answers
16 views
Are there any ready to wear software registration systems that I can bundle into the commercial desktop product?
I am going to use Python and wxpython. I am hoping that I do not have to roll my own software registration system. I would like to support timeout function for a trial period. I would also like to ...
1
vote
1answer
14 views
Why is wxGlade enforcing a sizer as the first child for wx.Frame?
I notice that wxGlade (gui builder for wxPython) is enforcing a sizer as the first child element for wx.Frame which seems odd to me since almost every book and tutorial out there suggests to use a ...
-1
votes
0answers
18 views
Trying to install wxpython on Mac OSX
I am trying to install wxpython onto my Mac OSX 10.8.3. I download the disk images from their downloads page and mount it. When I try to install the package I get an error that saying that the package ...
1
vote
1answer
39 views
is it possible to set numbers as a string in a listctrl
Okay ran into some complications setting some numbers in my Listctrl They're numbers in the SQL database and they're inserted as strings... converted to numbers automatically
from wx import *
import ...
0
votes
1answer
26 views
wxpython TextCtrl color specific part of the text
I'm using wxpython to create GUI with python, now, is there a way to color specific part of the text?
Example (using Tkinter):
http://i.stack.imgur.com/fGAVA.png
Here is my Print function:
def ...