vb2008webbrowser如何禁止脚本…

前端之家收集整理的这篇文章主要介绍了vb2008webbrowser如何禁止脚本…前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.在form 初始化时将webbrowser控件的ScriptErroRSSuppressed = True(false调试模式,允许脚本错误提示),也可以在其他合适的事件中设置。

2.写个子过程

Private Sub Window_Error(ByVal sender As Object,_ ByVal e As HtmlElementErrorEventArgs)
'忽略错误禁止弹出对话框

e.Handled = True
End Sub
3.在webbrowser控件的browser_DocumentCompleted事件中调用上述子过程,代码如下:

(ByVal sender As Object,_
ByVal e As WebBrowserDocumentCompletedEventArgs)
AddHandler CType(sender,WebBrowser).Document.Window.Error,_
AddressOf Window_Error
End Sub

注:browser为webbrowser控件名,比如webbrowser1之类的。

猜你在找的VB相关文章