I had the same problem.
I created several ActiveX DLLs and put the binaries in a COM + application that runs under a specific account (not mine). Then I use these components inside the ASP script pages using Server.CreateObject (). If I load the source code into VB for debugging and try to run it ("Start with full compilation"), I get this error message. The reason for this is that the account registered in the COM + application is different from my account with which I am trying to start. The solution for this particular case is to turn off the COM + application and remove the components. After debugging is complete, compile the DLL set and return them to the COM + application.
I hope this helps someone :-)
source share