-
I've done an active X DLL that seems to work but when i want to call it from an ASP page or from a new VB project i've got this error :
ChercheUserDLL erreur '800a01ae'
La classe ne gère pas Automation ou l'interface attendue
/projet2/user/cherche.asp, ligne 11
in VB it's the number 430 error.
I don't know what to do because i think i've done everything right : i've registrered the DLL in the REGISTRERY of Windows (with the regsvr32 command).
Thank u so much to help me !!!
-
Have you registered the DLL on the server that the asp file is on. Also the VB run time engine has to be on that server. It's no good just copying the .dll to the web server, either make a setup disk and install that on the server or use interdev6 to deploy it to the server. As for not being able to use it in a new VB project, don't know(does intellisense work for it in either VB or interdev6 ?)
-
Yes, i have registrered the DLL on the server where ASP runs...
Sure creating a setup programm must be the best thing to do but how to do this ? How could i do to know the other DLL (like VBrun or things like that) my object needs ?
-
If you are using the Enterprise edition of Visual studio:
from the start button:
Programs
Visual studio 6
Visual studio 6 tools
Package and deployment wizard
then just follow the instructions
-
Thanks !
Thanks for this tip i'm going to do this right now... hope it will work !!