解析.net tlb参考

时间:2017-03-06 15:49:37

标签: c# excel-vba com tlbexp vba


现在我正在编写一个.net dll,它应该可以在VBA代码中使用(Excel,Access等)。以下设置工作正常:

[InterfaceType(ComInterfaceType.InterfaceIsDual)]
[ComVisible(true)]
[Guid("8079e4a4-1e4b-4788-92ba-9d5b017fa9be")]  //Allocate your own GUID
public interface ICommunication
{
    string TestProp { get; set; }
    string Login();
    string Disconnect();
}

[ClassInterface(ClassInterfaceType.None)]
[ComVisible(true)]
[Guid("19fd86e2-f1b9-478c-ba7a-bd76bdf19b85")]  //Allocate your own GUID
[ProgId("TestDll.Communication")]
public class Communication : ICommunication
{
    public string TestProp { get; set; }

    public string Login()
    {
        // use of BouncyCastle here
        return "logged in";
    }

    public string Disconnect()
    {
        // ...
        return "disconnected";
    }
}

通过引用生成的tlb文件,我可以正确使用Property aswell Disconnect函数,但是调用Login函数会导致问题("文件未找到" Excel中的消息框),我猜这与使用引用了BouncyCastle。

Sub Button1_Click()
    Dim o: Set o = CreateObject("TestDll.Communication")
    Dim value As String
    value = o.Login()
    MsgBox value
End Sub

处理com可见库中其他.net程序集的引用的最佳方法是什么?到目前为止,我尝试向GAC注册bouncycastle但没有成功。

谢谢:)

1 个答案:

答案 0 :(得分:0)

确实上面提到了一个无法读取的文件: 在每个构建中,我将.txt放在项目的bin目录中,该目录是读取运行时。 在我的解决方案中使用dll可以找到文件,因为相对路径是我的bin目录,但是使用tlb,相对根路径是登录windows用户的文档文件夹。

有趣的是,我一直认为错误与我将dll设置为com的方式有关:)。