majczja4952
New Member
- Joined
- Jan 23, 2025
- Messages
- 1
- Office Version
- 365
- Platform
- Windows
The following code is fast in windows 10, but in windows 11 it can take up to a minute to receive stock data.
Any ideas?
LocalFilePath = folderPath & "/stockData.csv"
Application.ScreenUpdating = False
Set oReq = CreateObject("MSXML2.XMLHTTP")
With oReq
.Open "GET", strURL, False
.Send
End With
Any ideas?
LocalFilePath = folderPath & "/stockData.csv"
Application.ScreenUpdating = False
Set oReq = CreateObject("MSXML2.XMLHTTP")
With oReq
.Open "GET", strURL, False
.Send
End With