I am trying to get this loaded, it is seen in the automation dialog but it generates an error on selection.
I have added key:
HKEY_CLASSES_ROOT\CLSID\{B2D5EE59-287D-4B63-8FBC-EAF999A70982}\Programmable
Therefore Excel seems to be able to find the dll in the list.
Any ideas?
Code:
#Compile Dll #Dim All #Com Name "Excel_Com_Addin", 0.1 #Com Doc "This is specific information to be used in the Help String" #Com Guid Guid$("{92A8F70B-07FE-4CCD-8219-0F59190CD342}") #Com TLib On Class MyFunctions Guid$("{B2D5EE59-287D-4B63-8FBC-EAF999A70982}") As Com Interface Functions1 Guid$("{8C6F0412-9F48-48B1-80BA-B087F15DA5B1}"): Inherit Dual Property Get Value Alias "Value"() As String Property = Date$ & " - " & Time$ End Property End Interface End Class
HKEY_CLASSES_ROOT\CLSID\{B2D5EE59-287D-4B63-8FBC-EAF999A70982}\Programmable
Therefore Excel seems to be able to find the dll in the list.
Any ideas?
Comment