I am trying to get a VB.Net DLL function exposed as a COM to work in Excel. The post Accessing .NET functions exposed as COM in Excel was very helpful. I was able to successfully register the dll and tlb files.
The class object I created is visible to Excel, but its member is not. I am working in Windows 7-64 bit with Office 2010-32 bit. I compiled the dll for x86.
Here is the code
Namespace PRISMTest
Public Class Test
Public ReadOnly Property CheckExcelVersion As Integer
Get
Return 15
End Get
End Class
End Namespace
And what I see in the Excel Object Browser. Any ideas?
