i want to use a listview with pehaps 9 or 10 columns w header, checkbox's and then replicate the entire (or selected) lines into an identical listview. can this be done at runtime or must i prepare (header,font, etc) each subindexed listview object at design time?

' Visual Basic 6.0
For i = 1 To ListView1.ListItems.Count
    If ListView1.ListItems(i).Selected = True Then
        MsgBox(ListView1.SelectedItem
    End If
Next i

Also check out this reference:
http://msdn.microsoft.com/en-us/library/ms172636(v=vs.90).aspx

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.