Hello,
I use this code to read the content of an html file:
msie = ObjectCreate("InternetExplorer.Application")
msie.Width = 1000
msie.Height = 600
msie.addressbar = @TRUE
...
msie.navigate("http://.....") ;;; a VALID URL
While msie.busy || msie.readystate <> 4
TimeDelay(0.5)
EndWhile
...
This works fine on Windows7 with IE11.
But on Windows10 with IE11
- the IE opens
- then I get the following ERROR:
---
Ole: Error code not recognized
While msie.busy || msie.readystate <> 4
---
(see attachment)
Do I need to setup or install anything on Windows10?
Regards,
Erhard