|
-
Jun 28th, 2011, 04:24 AM
#1
Thread Starter
Hyperactive Member
listview
how i can edit one listview's subitem ?? only one not all , thanks.
-
Jun 28th, 2011, 04:26 AM
#2
Re: listview
You first index the ListView's Items collection to get a ListViewItem object. You then index that item's SubItems collection to get a ListViewSubItem. You can then get and/or set the Text property of that subitem.
-
Jun 28th, 2011, 04:50 AM
#3
Thread Starter
Hyperactive Member
Re: listview
yeah I found how ,
Code :
ListView1.Items(0).SubItems(2).Text = Label10.Text
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|