Thanx Peter!
I looked at the exact same documentation a while ago, but still face the same problem.
I Visual Basic 6 it was easy to create a new ActiveX DLL, add a module, compile it into a DLL and add the reference, but I'm having huge problems inplementing a similar case in
VB.Net.
I copied the Module 'Globals.
vb' into every project in my solution and that works fine, but still doesn't allow me to create one instance (it can not be instantiated) of the module and calling it up in my other projects.
I will browse around the net some more!
I also face another problem when creating a new property which should be 'WriteOnly':
Public WriteOnly Property ConnectionProp(ByVal ConnectionString As String)
Set(ByVal Value)
m_ConnectionString = ConnectionString
End Set
End Property
When calling it in the Initialization section of the class I get the following error: "'Argument not specified for parameter 'ConnectionString' of 'Public WriteOnly Property DefaultConnectionString(ConnectionString As String) As Object'"
EricJ