Hi all, I would like to know how do I do the code if I wanna delete a selected item from the array list and not all the items store in the array list? My code is,
vb.net Code:
  1. Dim PageObject As pageItem
  2.         PageObject = New pageItem("Page" + pnumber.ToString)
  3.         PageObject.itemFile = OpenFileDialog1.FileName
  4.         PageObject.videos = New ArrayList
  5.         PageObject.podcasts = New ArrayList
  6.         PageObject.photos = New ArrayList
  7.         PageArray.Add(PageObject)
Thanks!