Tagged Questions
The listcontrol tag has no wiki summary.
1
vote
5answers
144 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
99 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 ...
1
vote
0answers
31 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 ...
1
vote
1answer
119 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(...);
...
1
vote
1answer
666 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
2answers
173 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 ...
0
votes
0answers
61 views
Any suggestion how to implement the DropDownList behaviour on a user control?
I want have a user control which works very similar to a asp.net dropdownlist control by having DataTextField and DataValueField especially but instead of showing a drop-down list I will be ...
0
votes
4answers
185 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
82 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 ...
0
votes
1answer
463 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 ...