Jeremy Child
Jeremy Child

Reputation: 182

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

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

Upvotes: 1

Views: 4692

Answers (1)

Carl Rippon
Carl Rippon

Reputation: 4673

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

Upvotes: 1

Related Questions