The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
34 views

What method to disable auto assign sequence id in ListControl

I meet a problem, listcontrol control item which view of property is report, the first column of listcontrol is be auto assign sequence id, for now I want to assign value in it by myself, but the ...
-1
votes
4answers
89 views

Detect click on a blank item in a list control

In my mfc dialog based application, there is a CListCtrl. I need to disable a button when the user clicks on an empty item in the list control.I used NM_CLICK message and achieved this. But if the ...
4
votes
3answers
46 views

C# Can I display an Attribute of an Object in a Dictionary as ListControl.DisplayMember?

The aim is to see the list as a list of 'name's. Here's the dictionary: class Scripts { public Dictionary<int, Script> scripts = new Dictionary<int, Script>(); ... ...
0
votes
1answer
23 views

Microsoft Access 2007 List Column with relationship value

im new to access and i cannot understand how i create a list colum with a relationship between 2 tables. i have one table called Persons and the other Interviews. I create a relationship between ID ...
-6
votes
1answer
80 views

List Control delete item by specific column [closed]

How Can I delete specific item with only know specific column ?
0
votes
0answers
71 views

Why the second item won't appear (List Control)?

I added to my Win32 list control 2 columns. The First one is ofc iSubItem 0, and the second one is 1. In the first one, I can add items. But when I change the 'iSubItem' in the LVITEM to 1. The Item ...
0
votes
2answers
107 views

wxWidgets ContextMenu/Popup

I have a wxListCtrl and I would like to make it so that when a user right click on an item to show up a contextmenu/popup. How can I do this with wxFormBuilder or programatically? Cheers.
0
votes
2answers
414 views

SSRS using List Control to produce multiple page report

I have to create a report consisting of several pages each containing a table. The report dataset looks like this: Col1 | Col2 | Col3 | ... -----+------+------+---- Val1 | xxxx | xxxx | ... Val1 | ...
0
votes
1answer
341 views

Getting a selected item in a List Control, changing subitems

How can I catch a click on an item, and then change all it's subitems states? I know I can get the selected item with GetFirstSelectedItemPosition, but how do I use the SetItemState on the given ...
0
votes
2answers
110 views

telerik listcontrol only shows part of item image

I am filling a listcontrol (Telerik for WinForms) by using the following code : public static List<RadListDataItem> GetItems() { List<RadListDataItem> items = new ...
0
votes
1answer
105 views

What Event can trigger GetFocus of a wx.Checklist Control?

I'm trying to use the focus of a checklist control to provide info to the user to help them in their selection. I can self.list.GetFocus on a check item event but can't seem to get the focus outside ...
-1
votes
1answer
585 views

How to Store Dynamically in the List Control of MFC in Visual Studio?

I am working on the dialog based applciation using MFC in visual studio 2010. I used the list control as report type to display . I managed to display some hardcoded data on that output window. Here ...
1
vote
1answer
306 views

how come in VB.NET a listcontrol has no Items collection but in ASP.NET it does?

I have a simple subroutine that loads a list from a database. I would like to be able to use the same code to load a ListBox and a ComboBox by defining the list type as the common abstract base class ...
0
votes
1answer
331 views

How can a list-control be redrawn after changing its alignment style?

I am trying to figure out a way to refresh/update/redraw a list-control after its alignment style (LVS_ALIGNTOP / LVS_ALIGNLEFT) has been changed. If I change the style from icon/small mode to ...
0
votes
2answers
577 views

How to show datalist in datalist itemtemplate

Here's the problem I'm having in my ASP.NET web-form project. I have Datalist which shows all Products from Database , Each product have one or more colors . At the moment i write queries like this ...
1
vote
5answers
211 views

c# More elegant way to assign array to a list?

I have this: // Load changelog types ChangeLogType[] Types = ChangeLogFunctions.GetAllChangelogTypes(); foreach(ChangeLogType Rec in Types){ ListItem N = new ListItem(); N.Text = Rec.Type; ...
1
vote
1answer
312 views

ASP.NET: Why does ListControl.Text return the *value* of the selected ListItem rather than the *text*?

List controls deriving from ListControl, such as DropDownList, ListBox or RadioButtonList, are populated by a list of ListItems. A ListItem has a Value and a Text property. ListControl offers the ...
0
votes
4answers
586 views

Custom CListCtrl

I need to create a ListControl in MFC, each row having different number of columns. How can I do this? Thanks Tarun
0
votes
1answer
140 views

How to implement a FIFO listcontrol in MFC?

I need to implement a list control using MFC with the number of lines being fixed. It should Use FIFO with the number of lines being a fixed number. Is there an inbuilt option to this? Or a ...
1
vote
0answers
39 views

When does .NET's ListControl update its text from ToString() of its members?

I have a class which can change the value it returns in ToString(), but the ListBox which contains instances of this class in Items. The ListBox doesn't show this change unless I add or remove some ...
2
votes
1answer
1k views

WPF Custom Control for Side by Side Layout

I want to create a custom control so that I can do something like this: <SideBySide> <StackPanel SideBySide.Left="True">...</StackPanel> <StackPanel ...
0
votes
1answer
619 views

How to extend listControl class in C++ and add new functions?

Hi I need to extend the CListControl class in C++/MFC, which will add several new features in the list control, Any one have good sample code ? Or could you please tell me how can i start it ? Thanks ...
1
vote
1answer
140 views

is there such list control in c++

I am using MFC. I need a control just like listControl, it has such functions: MyListControl mylistControl = new MyListControl(); mylistControl.setDataSource(...); ...