Loading DLL's at runtime

Newbiedude

New member
Joined
Nov 9, 2005
Messages
2
Programming Experience
10+
Hello,

I did not see any posts which address this specifically, sorry if it is a duplicate. I am looking to load different DLL's at runtime. They have different names, but the same function calls. They will also be different from computer to computer. In VB6, everything was declared at design time, so the string constant was not variable. Usually something like this:

Private Declare Function <function name> Lib <DLL name string constant> <parameters>

Is there a way to do this in .net (2003) Thanks in advance for your response.
 
Back
Top