Hi Everyone,

I have a list box and can currently display the URL's from my favorites folder in it using the code below:

ListBox1.Items.Clear()
Dim favouritesPath As String
favouritesPath = Environment.GetFolderPath(Environment.SpecialFolder.Favorites)
ListBox1.Items.AddRange(IO.Directory.GetFiles(favouritesPath))

Is there a way to show the file names in the favorites folder and when they are doubled clicked on in the list box, them to open their URL in the web browser I'm making?

Thanks,

M1LA

PS. I'm using VB Net