I have a module that looks up a website and does a bunch of things. In cleaning up the code, I added the Option Explicit tag, and it stop compiling.
It's running into trouble on the following line
dim objHTML As htmldocument
I tracked down the issue, and it was because I am on a different computer, and the Microsoft HTML Object Library reference was not turned on.
So the question is, how do I turn on the Microsoft HTML Object Library reference on using vba in such a way that I can still compile use option explicit?