
GetObject("","InternetExplorer.Application") fails in Excel VBA
I think your problem is the syntax... use:
Set IExplore1 = CreateObject("InternetExplorer.Application")
or:
Set IExplore1 = GetObject(, "InternetExplorer.Application")
Hope this helps,
Rusty
Quote:
> GetObject("","InternetExplorer.Application")
> fails with the response error (80040111)
> Classfactory cannot supply the requested class
> Does anyone know what this means?
> Thanks
> Rob