• 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 
  • 相关阅读:
    mysql 查询当月天数
    mybatis <collection>标签 类型为string时无法获取重复数据错误
    eclipse 关闭validating
    YAGNI 声明
    tomcat 异常
    svn 用cmd命令行启动服务
    linux 命令
    windows10安装liux系统
    一带一路是个啥?
    串口通信协议
  • 原文地址:https://www.cnblogs.com/xxaxx/p/1635298.html
Copyright © 2020-2023  润新知