ComObjCreate
Posted: 16 May 2019, 09:49
Hello all,
I'm attempting to play with ComObjCreate, and really all the ComObj methods, but I'm having difficulty.
I'm really just following the example from the AutoHotKey Help document, below:
But, when I attempt to run, it returns an error: "0x800401F3 - Invalid class string". It seems to be pointing to the variable 'ie' that I created.
Any thoughts?
I'm attempting to play with ComObjCreate, and really all the ComObj methods, but I'm having difficulty.
I'm really just following the example from the AutoHotKey Help document, below:
Code: Select all
ie := ComObjCreate(InternetExplorer.Application)
ie.Visible := true
ie.Navigate("https://www.google.com")
Any thoughts?