|
-
Oct 6th, 2008, 01:25 PM
#1
Thread Starter
Fanatic Member
Re: Add an item to one column of ListView.
 Originally Posted by .paul.
try this:
vb Code:
Dim adi As New ListViewItem("") ' will add to column(0)
adi.SubItems.Add("second") 'will add to column(1)
adi.SubItems.Add("third") 'will add to column(2)
ListView2.Items.Add(adi)
edit: beat me again!
This code will add the items togather. I want to add items each one alone in single Sub as I told in post #4 and insert the items as it show in the pic2.
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
|