M
Michael Hesse
Hi,
I need to use two versions of the same DLL in a VB.Net application. I know
how to load one version:
Public Declare Function DoSomething Lib "MyDLL.Dll" () As Double
However if I try to also load:
Public Declare Function DoSomething Lib "MyOtherDLL.Dll" () As Double
I end up with 2 functions with the same name.
How do I get around this?
Thanks,
Michael
I need to use two versions of the same DLL in a VB.Net application. I know
how to load one version:
Public Declare Function DoSomething Lib "MyDLL.Dll" () As Double
However if I try to also load:
Public Declare Function DoSomething Lib "MyOtherDLL.Dll" () As Double
I end up with 2 functions with the same name.
How do I get around this?
Thanks,
Michael