tags:

views:

135

answers:

1

Can I reference a dll programatically in VB.net? Or change the Local Copy path for a dll reference?

A: 

It depends what type of DLL you are talking about. If it is COM then you can use late binding (CreateObject()). If it is .NET then you can use reflection: http://support.microsoft.com/kb/837908

rip
Thats brilliant. Thankyou for your time.
Jeremy Child