17.03.2022, 15:23
Hallo Gemeinde
Bin echt am verzweifeln. Seit tagen versuche ich einen Makrolode zu finden, mit dem ich von meiner Börsenseite eine Excel-Tabelle runterladen kann.
Nichts funktioniert bei mir.
Nicht mal der Kode funktionier:
https://wellsr.com/vba/2018/excel/downlo...oadtofile/
Was mache ich falsch?
Windows 10, Excel 2016
Bin echt am verzweifeln. Seit tagen versuche ich einen Makrolode zu finden, mit dem ich von meiner Börsenseite eine Excel-Tabelle runterladen kann.
Nichts funktioniert bei mir.
Nicht mal der Kode funktionier:
Code:
Private Declare PtrSafe Function URLDownloadToFile Lib "urlmon" _
Alias "URLDownloadToFileA" (ByVal pCaller As Long, ByVal szURL As String, _
ByVal szFileName As String, ByVal dwReserved As Long, ByVal lpfnCB As Long) As Long
Sub download_HK_picture()
imgsrc = " <br/>[i]Dateiupload bitte im Forum! So geht es:<a href="thread-326.html"> Klick mich!</a>[/i]<br/>"
dlpath = "F:\Bilder\"
URLDownloadToFile 0, imgsrc, dlpath & "HK Skyline.jpg", 0, 0
End Sub
Was mache ich falsch?
Windows 10, Excel 2016