Making a DLL COM accessible

后端 未结 4 603
轻奢々
轻奢々 2020-12-11 17:12

I have a class library written in .Net that I would like to make available to VB6/VBA. What I tried did not work (obviously as I am asking this question). Here is what I did

4条回答
  •  北海茫月
    2020-12-11 17:31

    Use GacUtil instead of RegSvr32. RegSvr is used for dll's made with VB6 and for the .NET DLL's you need to use GacUtil because it is added to the global assembly cache.

提交回复
热议问题