Quote Originally Posted by osemollie
Any ideas concerning adding the selected movies into the ListView control will be appreciated. Thanks.
VB Code:
  1. Dim MyItem As ListItem
  2. Do While Not AdoRs.EOF
  3.  Set MyItem = ListView1.ListItems.Add(, , AdoRs.Fields.Item("movieid").Value)
  4.     MyItem.SubItems(1) = AdoRs.Fields.Item("movietitle").Value
  5.     MyItem.SubItems(2) = etc 'until all movies in recordset are added
  6.     AdoRs.MoveNext
  7. Loop
I'm using AdoRs as my recordset object. Change that to your recordset object name.