Forum Moderators: open

Message Too Old, No Replies

help with error ASP 0177 (0x80004002)

         

helder

12:37 am on Feb 12, 2003 (gmt 0)

5+ Year Member



i have a web application under IIS and when i try to creat an object the following error occurs
ASP 0177 (0x80004002)
no such interface suported

Can you help me.
the line who brings the error is
Set objAutentic=server.CreateObject("Autenticacao.CLigacao").
this happnes in debug.

I have the windows Xp professional with IIs and com in VB6.

Thanks

Xoc

7:34 am on Feb 12, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to WebmasterWorld, helder.

This means there is some problem with the DLL or the registry settings for the DLL.

Easiest thing is to uninstall the DLL and then reinstall it.

If that doesn't work, then manually register the DLL and all DLLs that this DLL relies on by hand. You do that by creating a Command window and changing to the directory where the DLL is installed. Then do:

regsvr32 dllname.dll

where dllname is replaced by the name of the DLL.

If that doesn't work, you will need to contact whoever produced that DLL in the first place, as there is some bug within the internals of the DLL.

If you have questions about this process, come back and post again.