2

我有一个有效的基于 RtdServer 的自动化加载项:
如何使用 RtdServer 在 C# 中创建实时 Excel 自动化加载项?.

创建 VBA 包装器很简单:

Function RtdWrapper(start)
    RtdWrapper = Excel.Application.WorksheetFunction.RTD("StackOverflow.RtdServer.ProgId", "", start)
End Function

这行得通。我试图创建一个 C# 包装器,如下所示:

[ClassInterface(ClassInterfaceType.AutoDual)]
public class RtdWrappers
{
    private readonly Microsoft.Office.Interop.Excel.Application _application = new Application();

    public object Countdown(object startingCount)
    {
        var start = Convert.ToInt32(startingCount.ToString());
        return _application.WorksheetFunction.RTD("StackOverflow.RtdServer.ProgId", string.Empty, start);
    }

    [ComRegisterFunctionAttribute]
    public static void RegisterFunction(Type t)
    {
        Microsoft.Win32.Registry.ClassesRoot.CreateSubKey("CLSID\\{" + t.GUID.ToString().ToUpper() + "}\\Programmable");
    }

    [ComUnregisterFunctionAttribute]
    public static void UnregisterFunction(Type t)
    {
        Microsoft.Win32.Registry.ClassesRoot.DeleteSubKey("CLSID\\{" + t.GUID.ToString().ToUpper() + "}\\Programmable");
    }
}

当我在 Excel 中的单元格中输入“=Countdown(150)”时,它会显示 ConnectData 返回的初始值 150,但从不更新。我应该注册一些回调吗?我是否正确实例化了 Application 对象?我错过了什么?

谢谢,

坦率

4

1 回答 1

2

实际上,您没有获得正确的 Application 对象。一种解决方案是在加载项中实现IDTExtensibility2接口。此接口有一个 OnConnection 方法,Excel 将在加载您的加载项时调用该方法。在此方法中,您将获得 Application 对象,您可以将其保存在局部变量中以供以后使用。

于 2011-03-27T16:44:29.807 回答