阅读:
481次 时间:2003-08-13 00:00:00
字体:[
大 中 小]
uses Comobj, ... ... ;
{...}
var
Form1: TForm1;
IEApp: Variant;
{...}
procedure TForm1.Button1Click(Sender: TObject);
begin
IEApp := CreateOLEObject(‘InternetExplorer.Application‘);
IEApp.visible := true;
IEApp.Top := 0;
IEApp.Left := 0;
IEApp.width := screen.width; //可改你需要的宽度
IEApp.height := screen.height;//可改你需要的高度
IEApp.Navigate(‘http://www.csdn.net‘);
end;