Olá Pessoal,

Nesta dica vamos ver como usar COM para poder criar e manipular uma instância do IE de dentro do Delphi.

declare Comobj na seção uses.

procedure TForm1.Button1Click(Sender: TObject);
var
IE: Variant;
begin
  IE := CreateOLEObject('InternetExplorer.Application');
  IE.visible := true;
  IE.Top := 0;
  IE.Left := 0;
  IE.width := screen.width;
  IE.height := screen.height;
  IE.Navigate('//www.devmedia.com.br');
end;

 
Faça o teste, invoque os seguintes comandos e veja o resultado.

IE.StatusText := 'Qualquer texto';
IE.GoBack;
IE.Refresh;
IE.GoForward;
IE.Stop;
IE.GoHome;
IE.FullScreen := true;
IE.Quit;

Abraço e Até a próxima !!!