zoukankan      html  css  js  c++  java
  • win 7 下 UserAccounts.CommonDialog 出错的解决方式

    Dim strExcelFilePath,objDialog,tfile
    Set objDialog = CreateObject("UserAccounts.CommonDialog")
    objDialog.Filter = "Excel 2003|*.xls|Excel 2007|*.xlsx"
    objDialog.InitialDir = CreateObject( "WScript.Shell" ).SpecialFolders( "MyDocuments" )
    tfile=objDialog.ShowOpen
    If tfile Then 
    strExcelFilePath = objDialog.FileName

          ...... 

    很正常的一段代码,但是在win 7 下就出错了,网上找了个解决方式:

     1 Function ChooseFile()
     2      Dim Result
     3      Result = ""
     4      Dim IE : Set IE = CreateObject("InternetExplorer.Application")
     5      With IE
     6          .Visible = False
     7          .Navigate("about:blank")
     8          Do Until .ReadyState = 4 : Loop
     9          With .Document
    10              .Write "<html><body><input id='f' type='file'></body></html>"
    11              With .All.f
    12                  .Focus
    13                  .Click
    14                  Result = .Value
    15              End With
    16          End With
    17          .Quit
    18      End With
    19      Set IE = Nothing
    20     ChooseFile = Result
    21 End Function
  • 相关阅读:
    七牛云的 python sdk 是如何 批量删除资源的
    mysql 主从复制
    django3上线部署踩的坑
    基于linux在线预览
    数据库2
    数据库3
    安装 webstorm--->vue
    Django基础1
    pymysql基础
    前段之jQuery
  • 原文地址:https://www.cnblogs.com/abinxm/p/1762028.html
Copyright © 2011-2022 走看看