Haluk,
one more thing,
i have about 100 hundreds links and first IE class macro is goigng very slowly.
It is possible to fasten it somehow or rather not becasue of opening internet explorer?
this method seems to be faster but it is showing only empty msgbox in the end:
Sub Test3()
' Haluk - 18/07/2020
'
Dim W As Object
Dim URL As String
URL = "https://www.g2a.com/pl-pl/minecraft-windows-10-edition-microsoft-key-global-i10000032198001"
On Error Resume Next
Set W = CreateObject("winhttp.winhttprequest.5")
If Err.Number <> 0 Then
Set W = CreateObject("winhttp.winhttprequest.5.1")
End If
On Error GoTo 0
W.Open "GET", URL, False
W.Send
MsgBox W.ResponseText
Set W = Nothing
End Sub
Best Wishes,
Jacek
Bookmarks