Delphi用IE浏览器打开网址链接的三种

简单点可以用默认浏览器打开,方法如下:

uses shellapi

procedure TForm1.Button2Click(Sender: TObject);

begin

ShellExecut(Application.Handle, nil, 'http://iisnine.lofter.com', nil, nil, SW_SHOWNORMAL);

end;

IE打开网址链接的方法第一种:

uses SHDocVw;

procedure TForm1.Button4Click(Sender: TObject);

var

IE : OleVariant;

begin

IE := CoInternetExplorer.Create;

IE.Visible := True;

IE.Navigate2('http://iisnine.lofter.com');

end;

第二种:

uses shellapi

procedure TForm1.Button1Click(Sender: TObject);

begin

ShellExecute(Application.Handle, 'open','Iexplore.exe','http://iisnine.lofter.com',nil,SW_SHOWNORMAL);

end;

procedure TForm1.Button2Click(Sender: TObject);

begin

ShellExecute(Application.Handle, nil, 'http://iisnine.lofter.com', nil, nil, SW_SHOWNORMAL);

end;

第三种:

comobj

procedure TForm1.Button1Click(Sender: TObject);

procedure OpenInIe(URL:string);

var

Ie:Variant;

begin

Ie:=CreateOleObject('InternetExplorer.Application');

Ie.visible:=True;

Ie.left:=300; 

Ie.top:=200; 

Ie.height:=400;

Ie.width:=600;

Ie.menubar:=0; //隐藏菜单栏

Ie.toolbar:=0; //隐藏工具栏

Ie.addressbar:=0; //隐藏地址栏

//Ie.statubar:=0; //不可调整大小

Ie.resizable:=0;

Ie.navigate(URL);

end;

begin

OpenInIe('http://iisnine.lofter.com');

end;

还可以用WebBrowser控件

procedure TForm1.FormCreate(Sender: TObject);

begin

WebBrowser1.Align := alTop;

WebBrowser1.Navigate('http://iisnine.lofter.com');

end;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值