CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Guest

    ActiveX DLL register

    When I compile and run ActiveX DLL application, I am able to see the application.
    However, if another developer tries to run the application, an error message says error #429, "ActiveX component can't create object." In order to correct this, the developer has to recompile the application, or goto add references menu option in VB and add ActiveX DLL to the reference list AGAIN.

    Afterwards, I end up getting the message,"ActiveX component can't create object."
    If i correct this, the other developer will get the same error message again. How can I fix this??


  2. #2
    Join Date
    Sep 1999
    Posts
    18

    Re: ActiveX DLL register

    The ActiveX must be installed on the computer.
    Try : regsvr32 MyActiveX.dll


  3. #3
    Join Date
    Oct 1999
    Location
    MD, USA
    Posts
    169

    Re: ActiveX DLL register

    Change your project's compatibility to Project compatibility or Binary compatibility


  4. #4
    Join Date
    Dec 1999
    Location
    surfing net
    Posts
    9

    Re: ActiveX DLL register

    As the dll's are operating system specific you can't use a dll that is registered in one system in another ...You need to register the dll in the regedit of that machine where you are trying to use the dll ...

    resvr32 "<dllPath>"


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured