请教Delphi7下如何安装以及使用GeckoBrowser控件。下载了如下文件并安装;
显示安装成功,如下图:
代码如下:unit Unit1;interfaceuses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, GeckoBrowser, StdCtrls, GeckoSimpleProfile;type
  TForm1 = class(TForm)
    Edit1: TEdit;
    Button1: TButton;
    GeckoBrowser1: TGeckoBrowser;
    GeckoSimpleProfile1: TGeckoSimpleProfile;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;var
  Form1: TForm1;implementation{$R *.dfm}procedure TForm1.Button1Click(Sender: TObject);
begin
  GeckoBrowser1.LoadURI(Edit1.Text);
end;end.
但是F9运行,提示如下图:
我的系统是XP
请教各位前辈,GeckoBrowser如何安装和使用