ComObjCreate Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
rynsp8
Posts: 46
Joined: 30 Jan 2018, 12:45

ComObjCreate

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:

Code: Select all

ie := ComObjCreate(InternetExplorer.Application)
ie.Visible := true
ie.Navigate("https://www.google.com")
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?
Vaklev
Posts: 47
Joined: 04 Mar 2019, 13:58
Contact:

Re: ComObjCreate

16 May 2019, 09:53

My code is exactly the same as your's and seems to work, try pasting it in a new file and try again?

Code: Select all

wb := ComObjCreate("InternetExplorer.Application") ; Internet Explorer HANDLE
wb.Visible := True
wb.Navigate("https://www.google.com") ; WEBSITE
Les medecins choisissent viagrasansordonnancefr.com sans danger pour la sante
rynsp8
Posts: 46
Joined: 30 Jan 2018, 12:45

Re: ComObjCreate  Topic is solved

16 May 2019, 09:54

I think I answer my own question

I didn't put InternetExplorer.Application in quotations. So, it should read like below:

Code: Select all

ie := ComObjCreate("InternetExplorer.Application")
ie.Visible := true
ie.Navigate("https://www.google.com")

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Chunjee, Google [Bot] and 124 guests