Hi,
If I created a ActiveX DLL in VB how can I load it at runtine without refrencing it.


example:
Code:
 
Public Declare Function MyHello Lib "PLUGIN.dll" Alias "Hello" (ByVal Name As String) As Long
What would the code in the ActiveX DLL and the program look like.

Please