The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
23 views

How to add a subitem in this list activity?

i wanna add subitem for every list item.I am working on an app which uses swipey tabs in one tab there is a list and following is the code for that list i just wanna add a subitem text to every list ...
-1
votes
1answer
29 views

How to serialize subitem using json.net & c#

How can i serialize using json.net & c#? what is best way? How to append child node? output json string like this : { "OptQty":100,"OptQtySpecified":false, "OptTextList": ...
1
vote
0answers
63 views

ListBox delete items under certain conditions

How can i remove multiple items in a listbox? under certain conditions.. If i add items to my listbox like this: posItem.Items.Add(new ListBoxItem() // normal item { Content = "- " + item, ...
2
votes
1answer
171 views

Shifting the erroneous horizontal position of SubItemImages in a Delphi TListView?

In a Delphi TListView, is it possible to shift the erroneous horizontal position of SubItemImages, as they are drawn too far left? Something like this, for example (pseudo-code, which just shows the ...
0
votes
0answers
54 views

subitem and background color for a Listview position

i load data from an string-array in an xml to an Listview! my array in xml: <string-array name="koerperteile"> <item>Augen</item><item>Haut</item> ...
1
vote
2answers
221 views

Extract text from clicked submenu item of Menustrip

I've been dealing and looking for a way of extracting the text of any given subitem when clicked and write the text in textbox1. this is the code that I have so far, but it does not seem to work. ...
0
votes
1answer
108 views

cannot convert from 'string' to 'System.Web.UI.WebControls.ListViewDataItem'

and also cannot add subitems to a ListView control in .net, for example in c# i have this code: this.listView1.Items.Add(A.Key); this.listView1.Items[i].SubItems.Add(Convert.ToString(A.Value)); ...
0
votes
3answers
463 views

How to add a Listview with SubItems

I would like to display the data in an array of string as the subitems of the listview. How exactly could I do it?
0
votes
1answer
85 views

How to reorder subitems of a listviewitem?

so i've written a code that reorders the columns of a listview ( actually just -=1 and +=1's the display index of the selected listview column. But when i move the columns the subitems stay . they ...
0
votes
1answer
164 views

css menu with thick underline

I'm trying to mimic the look of this menu but fix the errors.: http://349ghgg83g.weebly.com/ When you hover over "Home" then move to "portfolio" a underline appears under "portfolio" As it should. ...
0
votes
1answer
253 views

vb6 set listview item/subitem image

i have a listview that i want to implement the effect seen in this image. The listview hides some items like in the image below except a password is entered. I know that item and subitem image are ...
1
vote
1answer
324 views

add subitem to listview item after clicking an item

I am working on an android application that I like to do something like this picture below to a listview: as you can see, there's a custom adapter for a list view that generates a list out of one ...
0
votes
3answers
338 views

Can't access Subitems in ListView while looping

I am trying to loop over a ListView with a foreach statement, but I can't seem to get the Subitems of item. No success with a For statement either. IntelliSense doesn't propose it on both ways. Code ...
0
votes
1answer
1k views

c#: show tooltip on subitem

I have a listview, and in one of the columns (not the first) I want to display an error code. What I haven't been able to do is get the ToolTip to display. I have this.lstList.ShowItemToolTips = ...
0
votes
2answers
176 views

C# Write Listview, and Read Listview (how to add indicator for listview for subitem)

Ok, so i got this project going on for myself to keep some thing in order. What i have is this : +---Date---+----Time----+----Error-----------+ |24-24-2012| 4:42 | Warning - test/test| ...
1
vote
3answers
427 views

onclicklistener for subitems of listview

I have a listview and each item of the lisview is a linearlayout. Each one of the linearlayouts contains 3 textviews. How do i set a onclicklistener for those textviews? i tried this: TextView ...
6
votes
2answers
2k views

In-place editing of a subitem in a TListView

I have a ListView with 3 columns and would like to edit the third column, aka Subitem[1]. If I set ListView.ReadOnly to True, it allows me to edit the caption of the selected item. Is there an easy ...
0
votes
2answers
3k views

Add subitem to list view with String Array?

BTW: This is for an Android app. Hey guys, I have made a ListView, and I have managed to add data to it. Here some example code of what I have done so far. String[] gameListFin; ...
0
votes
1answer
882 views

Changing the colour of certain ListView columns

How can I change the colour of a specific column in a listview? string[] row = { appID[i], "Launch Game"}; // more data to add listView1.Items.Add(nameArray[i], i).SubItems.AddRange(row); ...
0
votes
1answer
67 views

Insert rows? I tried but it keeps empty

I've a ListView (named ListView1). I added 4 columns (with visual editor, property Column): NumeroLista,OrdenLista,NumElementos,TiempoOrdenamiento. I'm sure the code is reached because before it is ...
0
votes
1answer
515 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
836 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) ...
3
votes
1answer
500 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 ...
0
votes
3answers
4k 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"); ...
5
votes
1answer
2k views

TListView: VCL loses the order of columns if you add a column

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 ...
0
votes
1answer
573 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
174 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
119 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
3answers
610 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
1k 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
17k 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
538 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
481 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 ...
4
votes
2answers
9k 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 ...
0
votes
1answer
360 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 ...
3
votes
1answer
4k 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 ...
1
vote
1answer
573 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 ...
3
votes
1answer
4k 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 ...
5
votes
2answers
5k 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" ...