zoukankan      html  css  js  c++  java
  • WebBrowser取消弹出式窗口、忽略错误

    代码
     1 WebBrowser取消弹出式窗口
     2 
     3 Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant) 
     4 Dim oDoc1 As HTMLDocument 
     5 Set oDoc1 = pDisp.Document 
     6 oDoc1.parentWindow.execScript "function alert(){return;}" 
     7 oDoc1.parentWindow.execScript "function confirm(){return;}" 
     8 oDoc1.parentWindow.execScript "function showModalDialog(){return;}" 
     9 End Sub
    10 
    11 
    12 '忽略错误
    13 Private Sub WebBrowser1_DownloadBegin() 
    14 WebBrowser1.Silent = True 
    15 End Sub 
    16 
    17 Private Sub WebBrowser1_DownloadComplete() 
    18 WebBrowser1.Silent = True 
    19 End Sub
    20 
    21 
    22 某些网页出于各种考虑会弹出对话框要求信息确认,往往会中断我们的webbrowser过程,可以使用如下方法:
    23 1.加入Microsoft Html Object
    24 2.加入语句
    25 
    26 Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
    27 Dim obj As HTMLDocument
    28 Set obj = pDisp.Document
    29 obj.parentWindow.execScript "function showModalDialog(){return;}" '对showModalDialog引起的对话框进行确定
    30 End Sub
    31 而confirm引发的对话确定框可用confirm替换showModalDialog即可,Alert等同理~
    32 
    33 另一种方法在CSDN看到的方法,过个记录(未尝试)
    34 
    35 Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As LongAs Long 
    36 
    37 ShellExecute frmDisplay.hwnd, vbNullString, "http://www.sina.com", vbNullString, vbNullString, SW_SHOWNORMAL
    38 
  • 相关阅读:
    mono for android学习过程系列教程(6)
    mono for android学习过程系列教程(5)
    mono for android学习过程系列教程(4)
    mono for android学习过程系列教程(3)
    mono for android学习过程系列教程(2)
    mono for android学习过程系列教程(1)
    随笔索引
    中国大学MOOC中的后台文件传输
    知乎控件分享(一)
    知乎UWP 预览
  • 原文地址:https://www.cnblogs.com/xxaxx/p/1635298.html
Copyright © 2011-2022 走看看