delphi webbrowser 问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi webbrowser 问题相关的知识,希望对你有一定的参考价值。
webbrowser 控件打开一页面。
此页面包含关闭当前页面的按钮
当点击此网页中关闭页面按钮,页面退出。
当再次访问webbrowser 控件时报句柄错误。
请问如何解决?
delphi禁止webbrowser弹出窗口或者脚本错误
delphi禁止webbrowser弹出窗口或者脚本错误
webbrowser1.silent:=true; //屏蔽脚本错误
procedure TForm1.WebBrowser1NewWindow2(Sender: TObject; var ppDisp: IDispatch; var Cancel: WordBool);
begin
Cancel:=True; //禁止弹出窗口
end;
出自
http://www.delphitop.com/html/kongjian/554.html
以上是关于delphi webbrowser 问题的主要内容,如果未能解决你的问题,请参考以下文章