|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
the simplest way to move the data between two ListView controlhello
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 Show quote "zbcong" <congzhe***@capinfo.com.cn> wrote in message news:O32VJPS0EHA.3808@tk2msftngp13.phx.gbl... > 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!! > > > > |
|||||||||||||||||||||||