I have two listview controls. In the code below I'm copying each item from the left listview to the one on the right side. I have a statusbar showing the number of items in the right listview. It shows the correct number so I think they're getting added, just not painting. Oh yea... the column headings (which have text) show as blank. Any help?
Visual Basic:
frmMain.lvwLeftList.BeginUpdate()
For Each SelLeftItem In frmMain.lvwLeftList.Items
SelLeftItem.ImageIndex = 1
SelLeftItem.ForeColor = Color.Blue
Dim SelItem As String = SelLeftItem.Text
Dim tmpItem As ListViewItem = CType(SelLeftItem.Clone(), ListViewItem)
frmMain.lvwRightList.Items.Add(tmpItem)
frmMain.ToolStripStatusRightShown.Text = "Total: " & frmMain.lvwRightList.Items.Count
Next
frmMain.lvwLeftList.EndUpdate()