Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
360 views

TListView: Adding new columns and subitems during runtime

I'm trying to add a column between existing columns in a TListView. Therefor I add the new column at the end and move it by setting it`s index to the designated value. This works, until adding another ...
4
votes
2answers
2k views

C# - Update a subitem within a listview

I am working on an application where users enter information that is then added to a listview. That works great. The only problem is, the application connects to a web site that updates the "Points" ...
3
votes
1answer
142 views

TListView: Subitem order after adding a new column between existing during runtime

If you add a new column between existing columns during runtime, the subitem indices are not like I'ld assume. e.g. after adding a new column between the second and third column the columns/subitems ...
3
votes
2answers
2k views

How to change the backcolor of a listview subitem using its own value

How can I programmatically change the back color of a single cell in a listview using its own value? The values in the ColorFlag Column Came from the database. Here is my code: foreach(DataRow dr ...
3
votes
1answer
1k views

Get SubItem value when double-clicking on Item in ListView

I have a listview with 2 columns, and when the I double click on an item, i need to display the value of its corresponding sub item in a TextBox control. How can I do this? I searched Google, but it ...
2
votes
2answers
2k views

C# - How to get/set ListViewItem or ListViewItem.ListViewSubItem by key?

I have a listview with several items that are created dynamically, each has two subitems that are quantity and code after a query to the database should update the quantity, but to make the code more ...
1
vote
1answer
276 views

How to edit a selected SubItem programmatically?

Does anyone know how can I edit a subitem on a listView? I've tried using this: ListView1.SelectedItems[0].SubItems[1].Text = "Hello?"; But that doesn't work. I get the error ...
0
votes
1answer
47 views

How to create more than 1 check box in ListView object?

I am using a ListWiew which has checked property selected so it have a check box on every item in first column. Now, I want to have another check box on second column also, but can't find anything ...
0
votes
2answers
61 views

How to add Tag and subitem in listview c#

I want to display tag and subitem in my listview , those items come by using while statement. here the code int id = 0; while ((line = sr.ReadLine()) != null) ...
0
votes
3answers
97 views

images in listview subitem C#

How to add an image instead of text for a listview subitem? Like http://i44.tinypic.com/2mzz6s6.png ? here is normally how I add a string: ListViewItem item = new ListViewItem("A"); ...
0
votes
1answer
247 views

Adding submenus to menu subitems in Joomla 1.7

i want to add a submenu to a menu subitem in Joomla 1.7. Example: [Main menu] Home Institutes **First Institute** Second Intitute FAQ Contact [First Institute submenu] First link Second link ...
0
votes
3answers
72 views

different colors for a LisrView sub items

can you help me find out how can I make my ListView sub items have different colors for each one? Like the first will be white, and second black and it iterate this colors for each new sub item. Can ...
0
votes
1answer
48 views

Why does changing ListView.Sorting property erase all subitem images?

I'm using a ListView with extended style set to LVS_EX_SUBITEMIMAGES to show small icons near every subitem (look at this article for more information). The problem is when I change the Sorting ...
0
votes
0answers
136 views

How do I access the subitems field of any other page elements in qml

There are three qml page. main,first and second.qml main.qml--------- Rectangle { first{id:firstpage} second{id:secondpage} pagestack.push(firstpage) pagestack.push(secondpage) } ...
0
votes
3answers
175 views

increasing character limit of subitem in listview with C#

I was wondering if its possible to increase the character limit of listview's subitems text.. there is a limitation of 259 characters.. any ideas would be appreciated.. regards,
0
votes
2answers
459 views

Changing the text Colour in a ListView Control ( Win32)

I have a List View Control that I have created with Win32 C++ I am adding sub items using ListView_SetItem This just Text and the List View is in Report Mode. I want to change the colour of the text ...
0
votes
2answers
3k views

Android - Adding Subitem to a listview

I currently have a listview which contains a couple of strings. These are called from a string array in strings.xml <string name="app_name">Taxi Me</string> <string-array ...
0
votes
1answer
120 views

C# Listview adding subitems

This is WinForms.. I have a for loop: private void MagicBtnClick(object sender, EventArgs e) { foreach (var auras in GetBuffs()) { var i = new ListViewItem(auras.ToString(), 0); ...
0
votes
2answers
241 views

C# listView check for repeated “fileName” entries

I am new to C# I just want to ask if is it possible to check against a SUBItem in a listview for repeated values before i do a ADD() method?? Lets say i have a listview and i can add/delete items I ...
0
votes
1answer
222 views

WPF ContextMenu lose its subitems

I've got a weird issue with WPF contextMenu regards updating the UI! Basically I create a hierarchical list named World. this list contain Countries and each country contain Cities. I bind this list ...
-2
votes
0answers
35 views

How can I get it? subitem with list view

How can set array adapter for a sub item in a listview? Illustration Item 1 subItem 1 <------- Item 2 subItem 2 <-------