Hello everyone who reads this topic! I was wondering if anyone out there knew how to make a listview box that doubled as something like window's explorer.exe. It would display all of the folders and files in a selected folder and show their icons too. I tried looking online for tutorials for literally hours, but the closet thing I could find was still of absolutely no help. Anyone have any ideas? Below is a picture of kinda what I am looking for.
Re: How do you make a Listview similar to Explorer?
Dim img As Image = Image.FromFile("test.png")
ImageList1.Images.Add(img)
Dim lvi As ListViewItem = New ListViewItem("text")
lvi.ImageIndex = 0
ListView1.Items.Add(lvi)