Just another of those things that I have never done before but which is probably simple ... when you know how
I am using VB Express 2008 and need to create a very simple DLL.
I already built and tested it and now I find that it has to be a COM DLL. How do I go about that?
Edit: in reply to @Kman - I looked at http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.comvisibleattribute.aspx
and changed my code to
Imports System.Runtime.InteropServices
Namespace My_DLL
<ClassInterface(ClassInterfaceType.AutoDual)> _
Public Class My_DLL
<ComVisible(True)> Public Sub Function_A()
End Sub
<ComVisible(True)> Public Sub Function_B()
End Sub
End Class
End Namespace
but I still don't the functions using DLL Explorer, whereas I do see them in the old DLL ...