delphi 禁用对话框网络浏览器

发布于 2024-09-17 20:17:23 字数 334 浏览 22 评论 0原文

如何防止出现该对话框 此文档已更改。保存更改?当网络浏览器关于:空白时发生的转换

非常感谢。这样做了

  Browser.Navigate ('about: blank');
  DesignMode (false ,'');
  Browser.OnNavigateComplete2: = NavigateComplite;

procedure NavigateComplite (ASender: TObject; const pDisp: IDispatch; var URL: OleVariant);
begin
  DesignMode (true ,'');
end;

how to prevent the appearance of the dialog box This document has changed. save changes? which occurs in the transition when webbrowser about: blank

Thank you so much. did so

  Browser.Navigate ('about: blank');
  DesignMode (false ,'');
  Browser.OnNavigateComplete2: = NavigateComplite;

procedure NavigateComplite (ASender: TObject; const pDisp: IDispatch; var URL: OleVariant);
begin
  DesignMode (true ,'');
end;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺孤伤于心 2024-09-24 20:17:23

我认为您正在使用 来自的 designMode 属性代码中的 IHTMLDocument2 接口。

您可以将此属性设置为“关闭”来禁用该对话框。

在更改到新页面之前尝试此代码

(WebBrowser1.Document as IHTMLDocument2).designMode := 'off';
WebBrowser1.Stop;

i think wich you are using the designMode property from the IHTMLDocument2 Interface in your code.

you can disable the dialog box setting this property to 'Off'.

try this code before to change to the new page

(WebBrowser1.Document as IHTMLDocument2).designMode := 'off';
WebBrowser1.Stop;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文