Reputation: 515
I just got a requirement to emmbed an IE control into a form, and the user wants to get access to all the browser histories.
I think the history manager in IE will do this, so how can I emmbed the history manager into my control?
Or can I read the history information, put it in a ListView and handle it myself?
Thanks
Upvotes: 1
Views: 4555
Reputation: 180808
See the following CodeProject article:
The tiny wrapper class for URL history interface in C#
http://www.codeproject.com/KB/cs/ponta.aspx
This article describes what the UrlHistoryWrapper class is and how to use it. The UrlHistoryWrapper class is a tiny class that wraps the C# equivalence of the IURLHistory interface in the MSDN document. They are wrapped into easy to use C# classes. This class provides the following features.
Upvotes: 3