Is possible to load dll files dinamycly?

  • Thread starter Thread starter Jorge Mu?oz via .NET 247
  • Start date Start date
J

Jorge Mu?oz via .NET 247

(Type your message here)
Hi I'm a beginner software developer, and I have a question about dynamic link library files (DLLs) on VB.NET, My question is this :
If I have an app compiled and generated its .EXE version,
Is possible to load dll files dinamycly on VB.NET?
I mean if I can use the classes contained into dll files without indicate a reference to them staticly, I'd rather that in executed time the user can choose some dll files to be referenced and used from that moment by the program.
Waiting for an answer, I say goodbye.
Thank you for your patien.
 
* Jorge Mu?oz via .NET 247 said:
If I have an app compiled and generated its .EXE version,
Is possible to load dll files dinamycly on VB.NET?
I mean if I can use the classes contained into dll files without
indicate a reference to them staticly, I'd rather that in executed time
the user can choose some dll files to be referenced and used from that
moment by the program.

For a simple plug/in/ mechanism, have a look at this sample:

<URL:http://dotnet.mvps.org/dotnet/samples/codingtechnique/downloads/PlugIns.zip>
 
It's definitely possible (see Assembly.Loadxxx)

HTH


Jorge Mu?oz via .NET 247 said:
(Type your message here)
Hi I'm a beginner software developer, and I have a question about dynamic
link library files (DLLs) on VB.NET, My question is this :
If I have an app compiled and generated its .EXE version,
Is possible to load dll files dinamycly on VB.NET?
I mean if I can use the classes contained into dll files without indicate
a reference to them staticly, I'd rather that in executed time the user can
choose some dll files to be referenced and used from that moment by the
program.
 
Back
Top