I have a .Visual Basic dll that I have been using for a while from a parent Visual Basic program. The .dll contains a class that I'm trying to instantiate, but when I do, I get the error:
Run-time error 91 - Object Variable of With Block Varible Not Set
The line of code it blows up on its:
Set mUtil = New Global_Utils
where "Global_Utils" is the class it's trying to instantiate.
I've tried re-building and re-registering the .dll, but that hasn't worked. Help!