Board index » delphi » Clearing IE History Entries
Mac
![]() Delphi Developer |
Clearing IE History Entries2004-04-02 02:21:20 PM delphi226 Hello, I want to remove specific entries from IE's history log. I have used IE Components from Euromind (UrlHistory). ---- procedure TForm1.Button2Click(Sender: TObject); begin //Urlhistory1.Dele{*word*249}tries(); UrlHistory1.ClearHistory(); end; procedure TForm1.UrlHistory1Delete(Title, Url: String; LastVisited, LastUpdated, Expires: TDateTime; var Delete: Boolean); begin Delete:=True; end; ---- But it seems this code and the component will not work on Win2000/XP or perhaps IE6. Anyone knows how can I remove History Entries? (Code snippets?) Regards, Mac |