我有一个有效的基于 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 对象?我错过了什么?
谢谢,
坦率