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 802687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:38:40+00:00 2026-05-14T23:38:40+00:00

My question is very similar to these two: C# component events? C# – writing

  • 0

My question is very similar to these two:

C# component events?

C# – writing a COM server – events not firing on client

However, what worked for them is not working for me. The type library file, does not have any hints of events definitions, so Delphi doesn’t see it. The class works fine for other C# applications, as you would expect.

COM Server tools:

  • Visual Studio 2010
  • .NET 4.0

Delphi applications:

  • Delphi 2010
  • Delphi 7

Here’s a simplified version of the code:

 /// <summary>
/// Call has arrived delegate.
/// </summary>
[ComVisible(false)]
public delegate void CallArrived(object sender, string callData);

/// <summary>
/// Interface to expose SimpleAgent events to COM
/// </summary>
[ComVisible(true)]
[GuidAttribute("1FFBFF09-3AF0-4F06-998D-7F4B6CB978DD")]
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface IAgentEvents
{
    ///<summary>
    /// Handles incoming calls from the predictive manager.
    ///</summary>
    ///<param name="sender">The class that initiated this event</param>
    ///<param name="callData">The data associated with the incoming call.</param>
    [DispId(1)]
    void OnCallArrived(object sender, string callData);
}

/// <summary>
/// Represents the agent side of the system. This is usually related to UI interactions.
/// </summary>
[ComVisible(true)]
[GuidAttribute("EF00685F-1C14-4D05-9EFA-538B3137D86C")]
[ClassInterface(ClassInterfaceType.None)]
[ComSourceInterfaces(typeof(IAgentEvents))]
public class SimpleAgent
{
    /// <summary>
    /// Occurs when a call arrives.
    /// </summary>
    public event CallArrived OnCallArrived;

    public SimpleAgent() {}

    public string AgentName { get; set; }

    public string CurrentPhoneNumber { get; set; }

    public void FireOffCall()
    {
        if (OnCallArrived != null)
        {
            OnCallArrived(this, "555-123-4567");
        }
    }
}

The type library file has the definitions for the properties and methods, but no events are visible. I even opened the type library in Delphi’s viewer to make sure. The Delphi app can see and use any property, methods, and functions just fine. It just doesn’t see the events.

I would appreciate any pointers or articles to read.

Thanks!

  • 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-14T23:38:41+00:00Added an answer on May 14, 2026 at 11:38 pm

    I finally got this resolved after much trial and error. There were 2 things that I needed to change on the C# code.

    1) [ClassInterface(ClassInterfaceType.None)] needed to be changed to [ClassInterface(ClassInterfaceType.AutoDual)]

    2) The class that is the source of the events needs to inherit from MarshalByRefObject. This helps if there is any threading done in the source class.

    I only needed one thing on the Delphi side. I needed to make sure to have the “Generate Component Wrapper” checkbox checked. This is what will actually build the event scaffolding on Delphi’s side.

    This is how you do it in Delphi 7:

    1. Select from the menu Project -> Import Type Library
    2. Make sure that “Generate Component Wrapper” is checked
    3. Select the COM class from the list
    4. Click on the “Add Unit” button

    The new unit will have the definitions of your COM events.

    Step-By-Step blog post on how to do this

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I had asked a question very much similar to this in the thread: https://stackoverflow.com/questions/11259474/store-the-numericals-in-char-array-into-an-integer-variable-in-vc
I know there is a very similar question here but I was hoping to
There is a VERY similar question to mine but in my case I don't
My question is very similar to this question - Addin parameter for Oracle except
This question is very similar (or almost identical) to In a non blocking socket
This question is very similar to an earlier question I asked ( This Question
I know that this question is very similar to the question posted here .
First up, my question is very similar to questions asked in Stackoverflow (and the
My question popped up a very similar question, this one . But the accepted
I'd asked a very similar question earlier , but the project scope is quickly

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.