the simplest way to move the data between two ListView control

  • Thread starter Thread starter zbcong
  • Start date Start date
Z

zbcong

hello
there are two ListViews with the SAME coloumns within one winform,i want to
move the data from one ListView into other one,what is the simplest method?

thank you!!
 
For Each item As ListViewItem In ListView1.Items
ListView2.Items.Add(CType(item.Clone, ListViewItem))
Next

/claes
 
Back
Top