ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1138|回复: 4

[求助] 请帮忙修改下代码,用于下载网上的PDF文档

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-7-3 13:02 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
我原来的设想是从这个网址(https://www.hongkongairport.com/ ... e/fact-figures.page)上打开相应的PDF文档,并且也写好了代码,但公司的浏览器有时候不好使,打开不了PDF,所以想将PDF保存到指定位置。我之前的代码是照猫画虎写的,对InternetExplorer.Application并不是太熟,所以请大神帮忙修改一下。
  1. Option Explicit

  2. Sub GetHKPDF()

  3. Dim IE As Object
  4. Dim strUrl As String

  5. Set IE = CreateObject("internetExplorer.Application")

  6. With IE
  7.     .Visible = False
  8.     .navigate "https://www.hongkongairport.com/en/the-airport/hkia-at-a-glance/fact-figures.page"
  9.     Application.StatusBar = "The webpage is loading, please wait..."
  10.     Do While .readystate <> 4
  11.         DoEvents
  12.     Loop
  13. End With

  14.     Application.StatusBar = "The webpage is fully loaded."
  15.    
  16.     'construct the string of PDF with input from the user
  17.     Dim PDFname As String
  18.     PDFname = "/iwov-resources/file/the-airport/hkia-at-a-glance/facts-figures/"
  19.     PDFname = PDFname & Cells(1, 1)
  20.     PDFname = PDFname & "e.pdf"
  21.     Debug.Print PDFname
  22.    
  23.     'looking for the PDF,when the hyperlink contains the PDF name, click the link
  24.     'to open it
  25.    
  26.     Dim strFound As Boolean
  27.     Dim aTag As Variant
  28.     strFound = False
  29.    
  30.     For Each aTag In IE.document.GetElementsBytagName("a")
  31.         If aTag.getattribute("href") = PDFname Then
  32.             aTag.Click
  33.             strFound = True
  34.             Exit For
  35.         End If
  36.     Next
  37.    
  38.     'Notify the user that the PDF is not found.
  39.     If strFound = False Then
  40.         MsgBox "HongKong AA has not yet published the statistics.Please try it later."
  41.     End If
  42.    
  43. Set IE = Nothing
  44. Application.StatusBar = False

  45. End Sub
复制代码


网络文件位置

网络文件位置

HKA PDF Downloader.zip

16.84 KB, 下载次数: 3

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-4 12:56 | 显示全部楼层
顶一下,咋都没人看 :-)

TA的精华主题

TA的得分主题

发表于 2018-7-5 09:15 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
schliemann 发表于 2018-7-4 12:56
顶一下,咋都没人看 :-)

客户演示3.gif

TA的精华主题

TA的得分主题

发表于 2018-7-5 09:17 | 显示全部楼层
机场PDF下载.zip (4.76 KB, 下载次数: 20)

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-7-5 20:14 | 显示全部楼层
谢谢老师的回复。请问老师是用什么软件做的?能否在我原先的代码上更改一下?因为公司的电脑只能用Excel,不能安装外来的软件。谢谢啦。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-4 12:08 , Processed in 0.023347 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表