Thread
:
How to update the time for any Item-ListView
View Single Post
shabbir
Go4Expert Founder
9May2007,14:53
Code: CSharp
ListViewItem lvi = listView1.
Items
[
0
]
;
lvi.
SubItems
[
0
]
.
Text
=
"Shabbir"
;
It will change the item 0,0 to my name.