Displaying IE favourites.

  • Thread starter Thread starter Muscha
  • Start date Start date
M

Muscha

Hi,

I am developing an application that is using a web browser control. I user
to access want to display IE favourites by clicking a button. I have seen
this done in other application (not .Net) so is there a way to do this
easily in .Net?

thanks,

/m
 
Thanks Tim,

but this is not what I wanted. I wanted to be able to display the IE
Favourites just like they appear on the web browser, without creating my own
list/forms.

Can we do this? I've seen another app does it, but it's a C/C++ app.

/m
 
So you want to show them with icons and folders? The solution that I posted
was just a starting point to get a list of favorites. What you do with that
list is up to you. Are you looking to create an explorer bar (the window
that shows up when you click "Favorites" on the toolbar) to show the
favorites or are you planning on showing them off the menu?
 
I want to display the IE favourites as it is when you click on the stars on
the IE toolbar. Is this achieveable without creating custom form?

/m
 
If you wanted to make something similar you could use a Panel (docked to the
side of the main Form) and a TreeView control. The only other thing to do is
use the list from the posted solution to populate the TreeView with folders
and favorites. If you look around on the Internet you might be able to find
something similar but you're probably best to just build it yourself
anyways.
 
Back
Top