|
-
Mar 7th, 2010, 05:56 AM
#1
Thread Starter
Junior Member
Web Browser with favorites
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
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|