开发者

How do I make my GUID visible for a VSTO Add-in

开发者 https://www.devze.com 2023-04-12 23:57 出处:网络
I\'ve tried adding the following code to the beginning of my add-in code as such: Namespace NS [Guid(\"211B3945-E2AE-48DD-8A9A-77ADB40EC6D5\")]

I've tried adding the following code to the beginning of my add-in code as such:

Namespace NS
    [Guid("211B3945-E2AE-48DD-8A9A-77ADB40EC6D5")]
    [ComVisible(true)]
    public partial class Classname
    {

but it doesn't appear when I list the COMAddins (the name does, but not the GUID).

I've also tried setting it in my compile settings under Assembly information with no luck.

BTW - the issue I'm trying to resolve is seeing if a COM Addin is loaded by searching for its GUID. The Addin description shows up when I check the list of ComAddIns, but the GUID still shows zeroes no matter how I follow these directions. I'm trying to see what's visible by using the following code:

olApp = this.Application;
Office.COMAddIns CAIs = olApp.COMAddIns;
foreach (Office.COMAddIn CAI in CAIs)
{
    StringBuilder sb = new StringBuilder();
    sb.AppendLine(CA开发者_运维技巧I.Description);
    sb.AppendLine(CAI.Guid);
    sb.AppendLine("****");
    Debug.Print(sb.ToString());
}


There are a number of things missing here to expose COM, including overriding RequestComAddInAutomationService and setting [InterfaceType(ComInterfaceType.InterfaceIsDual)]

See the following items:

  1. VSTO Add-ins, COMAddIns and RequestComAddInAutomationService
  2. VSTO in VBA: AddIn.Object returns Nothing (null) sometimes
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号