Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6847463
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:44:51+00:00 2026-05-27T00:44:51+00:00

I wrote an add-in for Enterprise Architect. It’s a COM Object. This add-in uses

  • 0

I wrote an add-in for Enterprise Architect. It’s a COM Object. This add-in uses some other project dll’s.

I created an installer which registers the Add-In’s dll. This class is in the add-in’s project, let’s call it MyProject.dll.

/// <summary>
/// Installer class for Enterprise Architect Add-In
/// </summary>
[RunInstaller(true)]
public class ComInstaller : Installer
{
    #region Public Methods

    public override void Install( System.Collections.IDictionary stateSaver )
    {
        base.Install( stateSaver );
        RegistrationServices regsrv = new RegistrationServices();
        if ( !regsrv.RegisterAssembly( GetType().Assembly, AssemblyRegistrationFlags.SetCodeBase ) )
        {
            throw new InstallException( "Failed to register type library for COM" );
        }            
    }

    public override void Uninstall( System.Collections.IDictionary savedState )
    {
        base.Uninstall( savedState );
        RegistrationServices regsrv = new RegistrationServices();
        if ( !regsrv.UnregisterAssembly( GetType().Assembly ) )
        {
            throw new InstallException("Failed to unregister type library for COM");
        }
    }

    #endregion
}

If the add-in runs, I can’t build my solution because access is denied. The add-in uses the MyProject.dll which is in the Debug folder instead of the installed one.

How can I solve this?

Thanks,
Maestro

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T00:44:52+00:00Added an answer on May 27, 2026 at 12:44 am

    This is how registration works. You can disable automatic registration at build:

    TODO screenshot

    Note that there is a way out of COM DLL hell with (Vista+?) manifest files:

    • Generate manifest files for registration-free COM
    • Avoid DLL Hell with Registration-free COM
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a sample code I wrote to add some tab pages with the
I want to reuse some code I wrote to add some functionality to a
i wrote a app for reading excel files.i had to add some references to
I wrote a Word 2003 add-in that uses the 2003 PIAs for early-binding. I
I wrote a numerical simulation and, as a tweak, I wanted to add some
I wrote some code in an add-in for Microsoft PowerPoint 2007. I executed it.
I wrote an answer to the first Project Euler question: Add all the natural
I wrote a simple game and I want to add custom pointer. I created
I wrote an app that uses UITabBarController , but if I add a lot
We wrote a MS Word Add-In using VSTO 2.0. In this Add-in we've connected

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.