Title: HOW to use IE in Delphi
Question: HOW to use IE in Delphi?
Answer:
HOW to use IE in Delphi
By : Pooia Lalbakhsh
MS in Computer Engineering
pooia2791@ftml.net
This procedure calls an IE window navigating to the URL address which
is passed to.
uses
ComObj;
procedure OpenInternetExplorer(address : string);
var
IE : Variant;
begin
IE := CreateOleObject('InternetExplorer.Application');
IE.Visible := true;
IE.Navigate(address);
end;