Can I hide the listView.Items.SubItem ?

Hi, there

************************************************
listView1.Items.Add(ID)
listView1.Items[i].SubItems.Add(Name);
listView1.Items[i].SubItems.Add(TEL);
listView1.Items[i].SubItems.Add(AGE);
************************************************

Can I hide the listView1.Items[i].SubItems[3] ?

Thanks...

[330 byte] By [codefund.com] at [2007-12-22]
# 1

I'd like to know that too.

Seems like a "Visible" Property is missing from the .NET Framework.

Dondata at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
Here's a Q&D workaround in VB.NET code:
Dim item As ListViewItem = ListView1.Items(i).SubItems.Add()
item.Tag = AGE

' Hide it:
item.Text = ""
' Show it:
item.Text = CStr(item.Tag)

nobugz at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3
How to do this in c#
Latso at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms General...