1
我是新的宏,可以真正使用一些幫助。下面的代碼來自Excel,用於訪問網頁,搜索超鏈接並下載PDF文件並將其保存在桌面上。展望VBA代碼
我需要修改它的展望:
- 因此,它檢測到發件人地址,即[email protected]
- 檢測在電子郵件和網頁上的超鏈接來檢測按鈕「導出詳細信息「並按下它
- 然後在下一頁按下」導出「按鈕並在桌面上保存CVS文件:」C:\ Users \ mlad1406 \ Desktop \ Test「。
我知道尋求幫助有很多,但我不知道如何前進。任何人都可以幫我調整這個代碼嗎?
謝謝!
Sub DownPDF()
' This macro downloads the pdf file from webpage
' Need to download MSXML2 and MSHTML parsers and install
Dim sUrl As String
Dim xHttp As MSXML2.XMLHTTP
Dim hDoc As MSHTML.HTMLDocument
Dim hAnchor As MSHTML.HTMLAnchorElement
Dim Ret As Long
Dim sPath As String
Dim i As Long
sPath = "C:\Users\mlad1406\Desktop\Test"
sUrl = "https://copernicus.my.salesforce.com/00O20000006WD95"
'Get the directory listing
Set xHttp = New MSXML2.XMLHTTP
xHttp.Open "GET", sUrl
xHttp.Send
'Wait for the page to load
Do Until xHttp.readyState = 4
DoEvents
Loop
'Put the page in an HTML document
Set hDoc = New MSHTML.HTMLDocument
hDoc.Body.innerHTML = xHttp.responseText
'Loop through the hyperlinks on the directory listing
For i = 0 To hDoc.getElementsByTagName("a").Length - 1
Set hAnchor = hDoc.getElementsByTagName("a").Item(i)
'test the pathname to see if it matches your pattern
If hAnchor.PathName Like "Ordin-*.2013.pdf" Then
Ret = UrlDownloadToFile(0, sUrl & hAnchor.PathName, sPath, 0, 0)
If Ret = 0 Then
Debug.Print sUrl & hAnchor.PathName & " downloaded to " & sPath
Else
Debug.Print sUrl & hAnchor.PathName & " not downloaded"
End If
End If
Next i
End Sub
所以你沒有關於你想要工作的事情,好吧。但是**你想要檢測發件人郵件**?按一個按鈕,你的意思是打開超鏈接? – R3uK
嗨,我想在郵件地址列出的FROM:字段中檢測它。關於第二個問題:電子郵件有一個超鏈接需要檢測和按下,這將打開一個網頁,並從那裏到處都是按鈕。 – maximladus
好的,您可以使用我在「oMailItem.SenderEmailAddress」回答中給出的代碼,並查找您的鏈接到主體中。然後,您可能需要使用HTML文檔來查找您的按鈕及其各自的鏈接。 – R3uK