现在我正在编写一个.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 以及 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 没有成功。
谢谢 :)