Application.RegisterXLL(xllFile)public const string RtdProgId = "testRtdServerId";
[ExcelFunction]public static object RtdFunction(){ return XlCall.Excel(XlCall.xlfRtd, RtdProgId, null, null);}
To post to this group, send email to exc...@googlegroups.com.
Hi Eugene,
return XlCall.Excel(XlCall.xlfRtd, RtdProgId, "", null);
or even with a space
return XlCall.Excel(XlCall.xlfRtd, RtdProgId, " ", null);
just to see if that makes a difference, and whether the event log entry changes when you do this.
Otherwise we might have to make a small test add-in and set up some extra logging. But I suggest the above ideas first.
-Govert
To post to this group, send email to exce...@googlegroups.com.