Tagged Questions
The listctrl tag has no wiki summary.
3
votes
2answers
127 views
wxPython - dynamially update a listctrl depending on input into a textctrl
does anyone of you have an example how to make the following possible:
I have a listctrl that displays > 600 items. Now I need to search in these items for a text the user inputs and update the list ...
3
votes
1answer
218 views
WxPython: deriving wx.ListItem but wx.ListCtrl only returns old class
I've got a small issue with derived classes, namely wx.ListItem with wx.ListCtrl. I succesfully derived wx.ListItem as a MediaItem, the code is not finished but you get the point:
class ...
3
votes
2answers
3k views
wxPython wxListCtrl selected row color
I want to have certain rows selected color be red instead of the standard color (blue on windows) so that I can indicate status. Anyone know if this is possible in wxPython?
3
votes
2answers
416 views
How to set and preserve minimal width?
I use some wx.ListCtrl classes in wx.LC_REPORT mode, augmented with ListCtrlAutoWidthMixin.
The problem is: When user double clicks the column divider (to auto resize column), column width is set to ...
2
votes
2answers
112 views
wxPython ListCtrl Help
I'm using a ListCtrl and it is populated with items on the fly, when an item is "Activated"(Double Click/Enter) it calls a function.
def onClick(self, event):
How do I find out which item was ...
2
votes
3answers
234 views
wxPython: Respond to Listctrl change exactly once
I'm working on a form using wxPython where I want want listctrl's list of values to change based on the selection of another listctrl. To do this, I'm using methods linked to the controlling object's ...
2
votes
2answers
681 views
Listview flickers on Win32 dialog when removing and re-adding all items and all columns
Consider a plain Win32 dialog with listview control (in report mode) written in C++. Upon a certain event all items and all columns are deleted and new columns and items are created. Basically, as ...
2
votes
4answers
967 views
ListCtrl - wxPython / Python
My question is if we can assign/bind some value to a certain item and hide that value(or if we can do the same thing in another way).
Example: Lets say the columns on ListCtrl are "Name" and ...
2
votes
1answer
347 views
Displaying integers in a wxpython listctrl
I have a wxPython ListCtrl with five columns. Four of these hold strings, the last one has integer values. I have been storing these as strings (i.e. '4', '17', etc.). However, now that I have added a ...
1
vote
1answer
27 views
wXPython: Unable to get widget to enlarge/expand in size
I can't get the listctrl widget to expand.
example picture: http://img109.imageshack.us/img109/3171/22488459.jpg
This code simply creates a dialog box and creates a CheckListCtrlMixin which is a ...
1
vote
1answer
46 views
SSRS How to order tablices in a List Control?
I am developing an RDL in SSRS 2008. I took 3 subreports and converted them into one report. So now I have one RDL file with 3 tablices. But one dataset since I merged all 3 subreport datasets into ...
1
vote
3answers
266 views
How to pass UTF-8 string from wx.TextCtrl to wx.ListCtrl
If I enter Baltic characters in textctrl and click button test1 I have an error
"InicodeEncodeError: 'ascii' codec can't encode characters in position 0-3:
ordinal not in ...
1
vote
2answers
131 views
lstrcpy() causing exceptions in visual C++ code
I used a MFC virtual list control to enhance the performance and I handle GetDispInfo(NMHDR* pNMHDR, LRESULT* pResult) to populate the ListCtrl. The relevant code in that method is as follows:
if ...
1
vote
2answers
312 views
Cannot format first column in WxPython's ListCtrl
If I set the format of the first column in a ListCtrl to align centre (or align right) nothing happens. It works for the other columns.
This only happens on Windows - I have tested it on Linux and it ...
1
vote
2answers
455 views
wxPython ListCtrl Column Ignores Specific Fields
I'm rewriting this post to clarify some things and provide a full class definition for the Virtual List I'm having trouble with. The class is defined like so:
from wx import ListCtrl, LC_REPORT, ...
1
vote
1answer
459 views
wxPython - Save Items in ListCtrl
My question is if we can save the items on ListCtrl so everytime someone opens the application, the items are there and if the user removes it, it also removes from the configuration.
I know that I ...
1
vote
4answers
1k views
How can I get the width of a wx.ListCtrl and its column name?
I'm working in wx.Python and I want to get the columns of my wx.ListCtrl to auto-resize i.e. to be at minimum the width of the column name and otherwise as wide as the widest element or its column ...
0
votes
2answers
49 views
Highlight a ListItem in a wx.ListCtrl on MouseOver
I have a wxListCtrl that display a table with information (with rows and column fields). Typically the row will be highlighted only when you click it with the mouse button. But I would like to have ...
0
votes
1answer
37 views
Change the font style of one item in a wx python ListCtrl
I am having issues changing the font of a single item in an wx list ctrl. I have 1 row and 3 columns in my ListCtrl. The code below should change the font of the item located at row = 0 col = 0 to ...
0
votes
1answer
40 views
CtrlList inserting item through postmessage treat notification
So here is my problem, i have a CtrlList, and I want to insert items via PostMessage (asyncron) therefore the message LVM_INSERT_MESSAGE, is going to be processed when it is his turn, but the problem ...
0
votes
1answer
197 views
wxPython ListCtrl OnClick Event
So, I have a wxPython ListCtrl which contains rows of data. How can I make an event that calls a function, with the row contents, when one of the rows if clicked on?
0
votes
1answer
134 views
python print contents from wx.ListCtrl
I have a list created as
self.statusListCtrl = wx.ListCtrl(self.panelUpper, -1, style=wx.LC_REPORT|wx.SUNKEN_BORDER)
I add data to this list using
...
0
votes
1answer
207 views
Use arbitrary wx objects as a column in a wx.ListCtrl
I have a wx.ListCtrl that has the wx.LC_REPORT bit set. It has 3 columns. I want the first column to be populated with a check box for each other entry. I tried using the ListCtrl.InsertItem method, ...
0
votes
2answers
144 views
wxpython: How to fill the inside of a checkbox in a listctrl object with a given rgb color?
I have this chart. In this chart I have a bunch of countries. I am trying to create the legends inside a listctrl object by changing the color of a non-functional checkbox.
Is there any wxpython ...
0
votes
1answer
203 views
get processes icon mfc c++
I am making a Process-Viewer like app. in windows which displays all the processes currently running in a CListCtrl . Now i want to get the icons of the processes and show them to the listCtrl.
please ...
0
votes
1answer
200 views
a problem about wxpython listctrl
I got a GUI application implemented in wxpython, on the main window, there is a listctrl used to dispaly the names of the files. it was empty at the very beginning. the user clicks the "File", then ...
0
votes
3answers
216 views
wxPython: VirtualTreeListCtrl with millions of items
I would like to add 1,000,000+ entries to the root node of a TreeListCtrl. Therefore I would like to make it "virtual", i.e. work just like a virtual ListCtrl so that it's still fast and I can easily ...